diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-11-26 10:55:55 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-11-26 10:55:55 +0000 |
commit | 596ec7f0722e229c1d90246cd957da9e2f578e6b (patch) | |
tree | 36da5d5481c650651f186d939202c016e47bba9c | |
parent | 31ba4b8cbbd50a87e9ada828980b7223a1d5e2b6 (diff) | |
download | brdo-596ec7f0722e229c1d90246cd957da9e2f578e6b.tar.gz brdo-596ec7f0722e229c1d90246cd957da9e2f578e6b.tar.bz2 |
#952528 by jptavan: Add missing break; to system help to prevent actions help from showing up on maintenance page.
-rw-r--r-- | modules/system/system.module | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 13aa1c06c..43e55c433 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -124,6 +124,7 @@ function system_help($path, $arg) { if ($user->uid == 1) { return '<p>' . t('If you are upgrading to a newer version of Drupal or upgrading contributed modules or themes, you may need to run the <a href="@update-php">update script</a>.', array('@update-php' => $base_url . '/update.php')) . '</p>'; } + break; case 'admin/config/system/actions': case 'admin/config/system/actions/manage': $output = ''; |