diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-12-14 18:08:50 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-12-14 18:08:50 +0000 |
commit | b6532a4fdbb5e32f2ab3bd7250aedd435313e52e (patch) | |
tree | 9859cf173b9c7bc75ddd1901fd77d05d9b3a28a1 /modules/ping/ping.module | |
parent | 4f2b77bcd99584b2a31cb9900620f376a7707b2f (diff) | |
download | brdo-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/ping/ping.module')
-rw-r--r-- | modules/ping/ping.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ping/ping.module b/modules/ping/ping.module index 75b1acd9a..245a122b6 100644 --- a/modules/ping/ping.module +++ b/modules/ping/ping.module @@ -14,7 +14,7 @@ function ping_help($path, $arg) { case 'admin/help#ping': $output = '<p>'. t('The ping module is useful for notifying interested sites that your site has changed. It automatically sends notifications, or "pings", to the <a href="@external-http-pingomatic-com">pingomatic</a> service about new or updated content. In turn, <a href="@external-http-pingomatic-com">pingomatic</a> notifies other popular services, including weblogs.com, Technorati, blo.gs, BlogRolling, Feedster.com, and Moreover.', array('@external-http-pingomatic-com' => 'http://pingomatic.com/')) .'</p>'; $output .= '<p>'. t('The ping module requires <code>cron</code> or a similar periodic job scheduler to be enabled.') .'</p>'; - $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@ping">Ping page</a>.', array('@ping' => 'http://drupal.org/handbook/modules/ping/')) .'</p>'; + $output .= '<p>'. t('For more information, see the online handbook entry for <a href="@ping">Ping module</a>.', array('@ping' => 'http://drupal.org/handbook/modules/ping/')) .'</p>'; return $output; } } |