summaryrefslogtreecommitdiff
path: root/modules/update/update.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/update/update.module')
-rw-r--r--modules/update/update.module2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/update/update.module b/modules/update/update.module
index 24f47fff5..8952f6e55 100644
--- a/modules/update/update.module
+++ b/modules/update/update.module
@@ -58,8 +58,10 @@ define('UPDATE_UNKNOWN', -2);
function update_help($path, $arg) {
switch ($path) {
case 'admin/reports/updates':
+ global $base_url;
$output = '<p>' . t('Here you can find information about available updates for your installed modules and themes. Note that each module or theme is part of a "project", which may or may not have the same name, and might include multiple modules or themes within it.') . '</p>';
$output .= '<p>' . t('To extend the functionality or to change the look of your site, a number of contributed <a href="@modules">modules</a> and <a href="@themes">themes</a> are available.', array('@modules' => 'http://drupal.org/project/modules', '@themes' => 'http://drupal.org/project/themes')) . '</p>';
+ $output .= '<p>' . t('Each time Drupal core or a contributed module or theme is updated, it is important that <a href="@update-php">update.php</a> is run.', array('@update-php' => url($base_url . '/update.php', array('external' => TRUE)))) . '</p>';
return $output;
case 'admin/build/themes':
case 'admin/build/modules':