diff options
author | webchick <webchick@24967.no-reply.drupal.org> | 2012-01-21 12:47:45 -0800 |
---|---|---|
committer | webchick <webchick@24967.no-reply.drupal.org> | 2012-01-21 12:47:45 -0800 |
commit | 27910871de69895eb9382be95037da8a473925d0 (patch) | |
tree | c0c6a842accd2c05d3001c3d714f0a2387ba565a /includes | |
parent | 12a722cb3cbb519fce642c3fa4cc31de9c09a825 (diff) | |
download | brdo-27910871de69895eb9382be95037da8a473925d0.tar.gz brdo-27910871de69895eb9382be95037da8a473925d0.tar.bz2 |
Issue #987930 by David_Rothstein, Tor Arne Thune: Fixed The obsolete 'site_offline_message' variable is not always deleted during the D6->D7 upgrade.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/update.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/update.inc b/includes/update.inc index 3a131083d..41f33f402 100644 --- a/includes/update.inc +++ b/includes/update.inc @@ -746,7 +746,7 @@ function update_fix_d7_requirements() { // Rename 'site_offline_message' variable to 'maintenance_mode_message' // and 'site_offline' variable to 'maintenance_mode'. // Old variable is removed in update for system.module, see - // system_update_7036(). + // system_update_7072(). if ($message = variable_get('site_offline_message', NULL)) { variable_set('maintenance_mode_message', $message); } |