diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-12-10 21:07:15 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-12-10 21:07:15 +0000 |
commit | 2474121c33ac20684508657f787321945f7ec3c3 (patch) | |
tree | 5cc409a98c7080799af86877b1e57a6f8e1d75f3 /modules/system/system.install | |
parent | af380b315fe6d85dced85d5c3c55f34d45c2dbf5 (diff) | |
download | brdo-2474121c33ac20684508657f787321945f7ec3c3.tar.gz brdo-2474121c33ac20684508657f787321945f7ec3c3.tar.bz2 |
- Patch # #87145 by Steven: usability improvement: easier break-tag.
Diffstat (limited to 'modules/system/system.install')
-rw-r--r-- | modules/system/system.install | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 9b0c77da1..42c4728a9 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -3421,6 +3421,15 @@ function system_update_1017() { } /** + * Change break tag. + */ +function system_update_1018() { + $ret = array(); + $ret[] = update_sql("UPDATE {node_revisions} SET body = REPLACE(body, '<!--break-->', '<break>')"); + return $ret; +} + +/** * @} End of "defgroup updates-4.7-to-5.0" */ |