summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-01-18 16:38:06 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-01-18 16:38:06 +0000
commit8d6c43ecdacf4456f55bbf79fea72f91f0771fce (patch)
tree0bd41ccebd6713df2520257020c0a71899a86ef4
parentdf489587522898386cdcc9463af5326c6210bd72 (diff)
downloadbrdo-8d6c43ecdacf4456f55bbf79fea72f91f0771fce.tar.gz
brdo-8d6c43ecdacf4456f55bbf79fea72f91f0771fce.tar.bz2
#350381 by tstoeckler and swentel: Add a note about running update.php to the modules page that's easier to find than the one buried under the module updates page.
-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':