summaryrefslogtreecommitdiff
path: root/modules/update
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-11-24 20:35:37 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-11-24 20:35:37 +0000
commitc975b69d1c9fb349e4df6d16c9c645f8392c2759 (patch)
treed4468ea04b8c22b52ab06f06aa7ebe6af5b239ed /modules/update
parent2fe5e3b6ebf200939946d6dc51ef9bfde9f058fe (diff)
downloadbrdo-c975b69d1c9fb349e4df6d16c9c645f8392c2759.tar.gz
brdo-c975b69d1c9fb349e4df6d16c9c645f8392c2759.tar.bz2
#175876 by hazexp, webernet, keith.smith: unify module/theme/translation download links and include more pointers to these locations
Diffstat (limited to 'modules/update')
-rw-r--r--modules/update/update.module5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/update/update.module b/modules/update/update.module
index 2a5305470..c2c929cb6 100644
--- a/modules/update/update.module
+++ b/modules/update/update.module
@@ -47,8 +47,9 @@ define('UPDATE_UNKNOWN', 5);
function update_help($path, $arg) {
switch ($path) {
case 'admin/reports/updates':
- return '<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('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>';
+ return $output;
case 'admin/build/themes':
case 'admin/build/modules':
include_once './includes/install.inc';