diff options
-rw-r--r-- | CHANGELOG.txt | 2 | ||||
-rw-r--r-- | modules/system/system.updater.inc | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 52065b473..6b6f5e03e 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,6 +1,8 @@ Drupal 7.18, xxxx-xx-xx (development version) ----------------------- +- Added a link to "Install another module" after a module has been successfully + downloaded via the Update Manager (UI change). - Added an optional "exclusive" flag to installation profile .info files which allows Drupal distributions to force a profile to be selected during installation (API addition). diff --git a/modules/system/system.updater.inc b/modules/system/system.updater.inc index 0df1ad955..a14d788b1 100644 --- a/modules/system/system.updater.inc +++ b/modules/system/system.updater.inc @@ -73,8 +73,12 @@ class ModuleUpdater extends Updater implements DrupalUpdaterInterface { return array(); } + /** + * Returns a list of post install actions. + */ public function postInstallTasks() { return array( + l(t('Install another module'), 'admin/modules/install'), l(t('Enable newly added modules'), 'admin/modules'), l(t('Administration pages'), 'admin'), ); |