summaryrefslogtreecommitdiff
path: root/modules/ping
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-12-19 17:45:43 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-12-19 17:45:43 +0000
commitdbf5d8d370a1d098117e5e9e08461796e1e45358 (patch)
tree47de03aef08715bff7eeea7b65709430bfb4a57b /modules/ping
parent196856f59c4dfe6a1ce57cdec09b5ff83441cc5e (diff)
downloadbrdo-dbf5d8d370a1d098117e5e9e08461796e1e45358.tar.gz
brdo-dbf5d8d370a1d098117e5e9e08461796e1e45358.tar.bz2
#197730 by keith.smith: standardize on a much more user friendly cron reference in help texts, explain its importance with more examples in INSTALL.txt
Diffstat (limited to 'modules/ping')
-rw-r--r--modules/ping/ping.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ping/ping.module b/modules/ping/ping.module
index 245a122b6..fb2b20428 100644
--- a/modules/ping/ping.module
+++ b/modules/ping/ping.module
@@ -13,7 +13,7 @@ function ping_help($path, $arg) {
switch ($path) {
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('The ping module requires a correctly configured <a href="@cron">cron maintenance task</a>.', array('@cron' => url('admin/reports/status'))) .'</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;
}