diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-11-23 16:54:49 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-11-23 16:54:49 +0000 |
commit | a7b2b9dfd1d17c75afb2f64812d5384efdffb7e4 (patch) | |
tree | 87033ec419e702a2999fdc128429be03260007ab /modules/system/system.install | |
parent | f91cfba34f045c6dd2ca7a2fc48b9df1496f4e74 (diff) | |
download | brdo-a7b2b9dfd1d17c75afb2f64812d5384efdffb7e4.tar.gz brdo-a7b2b9dfd1d17c75afb2f64812d5384efdffb7e4.tar.bz2 |
- Patch #332980 by scor and keith.smith: documentation improvements + typo fixed.
Diffstat (limited to 'modules/system/system.install')
-rw-r--r-- | modules/system/system.install | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index bcde1b943..f6601b95e 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -3090,6 +3090,18 @@ function system_update_7012() { } /** +<<<<<<< system.install + * Change the user logout path. + */ +function system_update_7014() { + $ret = array(); + $ret[] = update_sql("UPDATE {menu_links} SET link_path = 'user/login' WHERE link_path = 'login'"); + $ret[] = update_sql("UPDATE {menu_links} SET router_path = 'user/login' WHERE router_path = 'login'"); + return $ret; +} + +/** +======= * Convert default time zone offset to default time zone name. */ function system_update_7013() { @@ -3131,6 +3143,7 @@ function system_update_7013() { } /** +>>>>>>> 1.282 * @} End of "defgroup updates-6.x-to-7.x" * The next series of updates should start at 8000. */ |