diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-11-05 16:00:55 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-11-05 16:00:55 +0000 |
commit | 2d8529a032193b5a3b8bf73a1b4d953a1b15bee5 (patch) | |
tree | 75be5941886a82cb745f4b69c3ab6acc3c7938a5 /modules | |
parent | bad54847fab7ef57c375b635252ef71e4f2b14d7 (diff) | |
download | brdo-2d8529a032193b5a3b8bf73a1b4d953a1b15bee5.tar.gz brdo-2d8529a032193b5a3b8bf73a1b4d953a1b15bee5.tar.bz2 |
#187759 by myself: add missing break to reach when if() was not satisfied, to avoid extra unrelated help appearing on block configure pages
Diffstat (limited to 'modules')
-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 417def42c..8fe6e964d 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -56,6 +56,7 @@ function system_help($path, $arg) { if ($arg[4] == 'system' && $arg[5] == 0) { return '<p>'. t('The <em>Powered by Drupal</em> block is an optional link to the home page of the Drupal project. While there is absolutely no requirement that sites feature this link, it may be used to show support for Drupal.') .'</p>'; } + break; case 'admin/settings/actions': case 'admin/settings/actions/manage': $output = '<p>'. t('Actions are individual tasks that the system can do, such as unpublishing a piece of content or banning a user. Modules, such as the trigger module, can fire these actions when certain system events happen; for example, when a new post is added or when a user logs in. Modules may also provide additional actions.') .'</p>'; |