diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-05-11 07:33:46 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-05-11 07:33:46 +0000 |
commit | b09fbd8e504a941aa27140ed8eaf467d3d88ad17 (patch) | |
tree | 5ec18374794e90db9809dbfe024be5a736d72ce0 /modules/system/system.install | |
parent | 21fe511dfa6727f0a0ef43865f953fac78e32c30 (diff) | |
download | brdo-b09fbd8e504a941aa27140ed8eaf467d3d88ad17.tar.gz brdo-b09fbd8e504a941aa27140ed8eaf467d3d88ad17.tar.bz2 |
#141637 by merlinofchaos and yched: follow up fixes to the installer patch, properly rebuilding the menu when done and returning update results
Diffstat (limited to 'modules/system/system.install')
-rw-r--r-- | modules/system/system.install | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index b1fda9b22..4a33350be 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -3871,6 +3871,8 @@ function system_update_6013() { // Rebuild system table contents. module_rebuild_cache(); system_theme_data(); + + return array(); } /** @@ -3879,6 +3881,8 @@ function system_update_6013() { */ function system_update_6014() { variable_set('install_task', 'done'); + + return array(); } |