diff options
Diffstat (limited to 'modules/update/update.module')
-rw-r--r-- | modules/update/update.module | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/modules/update/update.module b/modules/update/update.module index c25ece824..c8e4aa5ac 100644 --- a/modules/update/update.module +++ b/modules/update/update.module @@ -79,11 +79,6 @@ function update_help($path, $arg) { 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>'; - case 'admin/appearance/install': - case 'admin/config/modules/install': - case 'admin/reports/updates/install': - return '<p>' . t('To install a new module or theme, either upload the .tar.gz file that you have downloaded, or paste the URL of a .tar.gz you wish to install. You can find <a href="@module_url">modules</a> and <a href="@theme_url">themes</a> at <a href="@drupal_org_url">http://drupal.org</a>.', array('@module_url' => 'http://drupal.org/project/modules', '@theme_url' => 'http://drupal.org/project/themes', '@drupal_org_url' => 'http://drupal.org')) . '</p>'; - case 'admin/appearance': case 'admin/config/modules': include_once DRUPAL_ROOT . '/includes/install.inc'; @@ -101,8 +96,11 @@ function update_help($path, $arg) { } case 'admin/appearance/update': + case 'admin/appearance/install': case 'admin/config/modules/update': + case 'admin/config/modules/install': case 'admin/reports/updates/update': + case 'admin/reports/updates/install': case 'admin/reports/updates/settings': case 'admin/reports/status': case 'admin/update/confirm': |