summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-03-25 18:40:50 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-03-25 18:40:50 +0000
commitdf6ec4d7ffc4d1782598924dc1bf27151232f8c3 (patch)
treea84d2cf902a092ac4a2a46d2525bf3f0357263a8 /modules
parentf8083c48dbf9b88b0b82d84633ab0c07e494e15e (diff)
downloadbrdo-df6ec4d7ffc4d1782598924dc1bf27151232f8c3.tar.gz
brdo-df6ec4d7ffc4d1782598924dc1bf27151232f8c3.tar.bz2
#410638 follow-up by foxtrotcharlie and David Rothstein: Fix help text on blocks so that 'Powered by' doesn't show up on all system blocks.
Diffstat (limited to 'modules')
-rw-r--r--modules/system/system.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index 8c5f8b48e..528d6c300 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -93,7 +93,7 @@ function system_help($path, $arg) {
case 'admin/build/modules/uninstall':
return '<p>' . t('The uninstall process removes all data related to a module. To uninstall a module, you must first disable it. Not all modules support this feature.') . '</p>';
case 'admin/build/block/configure':
- if ($arg[4] == 'system' && $arg[5] == 0) {
+ if ($arg[4] == 'system' && $arg[5] == 'powered-by') {
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;