diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-10-24 11:41:05 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-10-24 11:41:05 +0000 |
commit | 35d0b6d678808db0b74eb7d4cf773d2e0f799e0f (patch) | |
tree | ded19e85f3d7715ec05eb50be9bcf336338aaa8d /modules/update | |
parent | df12d6ff7d1cfbee864a4e0b1a640b6e2df29f23 (diff) | |
download | brdo-35d0b6d678808db0b74eb7d4cf773d2e0f799e0f.tar.gz brdo-35d0b6d678808db0b74eb7d4cf773d2e0f799e0f.tar.bz2 |
- Patch #605918 by dww, JacobSingh: port update manager to use the new Archiver class, not directly Archive_Tar, and fixed usability problem with unwanted link showing up.
Diffstat (limited to 'modules/update')
-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': |