summaryrefslogtreecommitdiff
path: root/modules/trigger
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-12-14 18:08:50 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-12-14 18:08:50 +0000
commitb6532a4fdbb5e32f2ab3bd7250aedd435313e52e (patch)
tree9859cf173b9c7bc75ddd1901fd77d05d9b3a28a1 /modules/trigger
parent4f2b77bcd99584b2a31cb9900620f376a7707b2f (diff)
downloadbrdo-b6532a4fdbb5e32f2ab3bd7250aedd435313e52e.tar.gz
brdo-b6532a4fdbb5e32f2ab3bd7250aedd435313e52e.tar.bz2
#200069 by keith.smith: new standard for 'more information' links in module help texts, as the handbook we referred to before was renamed
Diffstat (limited to 'modules/trigger')
-rw-r--r--modules/trigger/trigger.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/trigger/trigger.module b/modules/trigger/trigger.module
index 045731e77..dc680aa73 100644
--- a/modules/trigger/trigger.module
+++ b/modules/trigger/trigger.module
@@ -26,7 +26,7 @@ function trigger_help($path, $arg) {
case 'admin/help#trigger':
$output = '<p>'. t('The Trigger module provides the ability to trigger <a href="@actions">actions</a> upon system events, such as when new content is added or when a user logs in.', array('@actions' => url('admin/settings/actions'))) .'</p>';
$output .= '<p>'. t('The combination of actions and triggers can perform many useful tasks, such as e-mailing an administrator if a user account is deleted, or automatically unpublishing comments that contain certain words. By default, there are five "contexts" of events (Comments, Content, Cron, Taxonomy, and Users), but more may be added by additional modules.') .'</p>';
- $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@trigger">Trigger page</a>.', array('@trigger' => 'http://drupal.org/handbook/modules/trigger/')) .'</p>';
+ $output .= '<p>'. t('For more information, see the online handbook entry for <a href="@trigger">Trigger module</a>.', array('@trigger' => 'http://drupal.org/handbook/modules/trigger/')) .'</p>';
return $output;
}
}