diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-22 16:55:46 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-22 16:55:46 +0000 |
commit | 4cbe60a533acc3d30da5ddd68f932d79982eeeff (patch) | |
tree | a731779de1f93258fd94d837b652fbb8c0983816 | |
parent | cf5618753251e24b48914329cab158a694005513 (diff) | |
download | brdo-4cbe60a533acc3d30da5ddd68f932d79982eeeff.tar.gz brdo-4cbe60a533acc3d30da5ddd68f932d79982eeeff.tar.bz2 |
#370454 follow-up by flobruit: Fix update function return value.
-rw-r--r-- | modules/system/system.install | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 7c439b890..5c8cf20b9 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -2300,11 +2300,12 @@ function system_update_7032() { * Move CACHE_AGGRESSIVE to CACHE_NORMAL. */ function system_update_7033() { + $ret = array(); if (variable_get('cache') == 2) { variable_set('cache', CACHE_NORMAL); $ret[] = array('success' => TRUE, 'query' => "Aggressive caching was disabled and replaced with normal caching, please read the page caching section in default.settings.php for more information on how to enable similar functionality."); } - return array(); + return $ret; } /** |