diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-01-01 21:59:05 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-01-01 21:59:05 +0000 |
commit | 9440e26269cefc166b0e1dc6a1f67768624d6d9f (patch) | |
tree | 97642cf57b00e985897df9202d19cf07a3b06682 /modules/update/update.module | |
parent | 11095307617c527a03a65736fe6e91e54ac31ad5 (diff) | |
download | brdo-9440e26269cefc166b0e1dc6a1f67768624d6d9f.tar.gz brdo-9440e26269cefc166b0e1dc6a1f67768624d6d9f.tar.bz2 |
- Patch #352728 by j.somers: fixed broken link.
Diffstat (limited to 'modules/update/update.module')
-rw-r--r-- | modules/update/update.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/update/update.module b/modules/update/update.module index 7ccf2bc5d..24f47fff5 100644 --- a/modules/update/update.module +++ b/modules/update/update.module @@ -84,7 +84,7 @@ function update_help($path, $arg) { case 'admin/help#update': $output = '<p>' . t("The Update status module periodically checks for new versions of your site's software (including contributed modules and themes), and alerts you to available updates.") . '</p>'; - $output .= '<p>' . t('The <a href="@update-report">report of available updates</a> will alert you when new releases are available for download. You may configure options for update checking frequency and notifications at the <a href="@update-settings">Update status module settings page</a>.', array('@update-report' => url('admin/reports/updates'), '@update-settings' => url('admin/reports/updates/settings'))) . '</p>'; + $output .= '<p>' . t('The <a href="@update-report">report of available updates</a> will alert you when new releases are available for download. You may configure options for update checking frequency and notifications at the <a href="@update-settings">Update status module settings page</a>.', array('@update-report' => url('admin/reports/updates'), '@update-settings' => url('admin/settings/updates'))) . '</p>'; $output .= '<p>' . t('Please note that in order to provide this information, anonymous usage statistics are sent to drupal.org. If desired, you may disable the Update status module from the <a href="@modules">module administration page</a>.', array('@modules' => url('admin/build/modules'))) . '</p>'; $output .= '<p>' . t('For more information, see the online handbook entry for <a href="@update">Update status module</a>.', array('@update' => 'http://drupal.org/handbook/modules/update')) . '</p>'; return $output; |