summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-05-27 19:41:01 +0000
committerDries Buytaert <dries@buytaert.net>2009-05-27 19:41:01 +0000
commit70875e9dbe2e108d9f718533643d34c3b0708039 (patch)
tree2b7cc3bcbe259986948be51d0b23837a4b4954c7
parentfd42000773a5df8ddce3f5308528d31340df3778 (diff)
downloadbrdo-70875e9dbe2e108d9f718533643d34c3b0708039.tar.gz
brdo-70875e9dbe2e108d9f718533643d34c3b0708039.tar.bz2
- Patch #473012 by stella: improve help text on uninstall page.
-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 0a6d7ee51..ce51cb714 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -91,7 +91,7 @@ function system_help($path, $arg) {
$output .= '<p>' . t('Each time a module is updated, it is important that <a href="@update-php">update.php</a> is run. To help manage the update process, the <em>Update status</em> module, if enabled, provides <a href="@updates">information on new versions of modules (and themes)</a> as they are released. Regular review of the <a href="@updates">available updates page</a> is essential to maintaining a secure and current site.', array('@update-php' => $base_url . '/update.php', '@updates' => url('admin/reports/updates'))) . '</p>';
return $output;
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>';
+ return '<p>' . t('The uninstall process removes all data related to a module. To uninstall a module, you must first disable it on the main <a href="@modules">modules page</a>. Not all modules support this feature.', array('@modules' => url('admin/build/modules'))) . '</p>';
case 'admin/build/block/configure':
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>';