diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 52065b47300fddcbe2ab7253eecc84d5bee0acbd..6b6f5e03ee8a4cc19ee7cc38386cc2b11ca20df8 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 0df1ad955c8ed6b511f49480ba89be090d9ac629..a14d788b149ddb47066a6303edfe9c0e0dbe3ce2 100644 --- a/modules/system/system.updater.inc +++ b/modules/system/system.updater.inc @@ -73,8 +73,12 @@ public function getSchemaUpdates() { 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'), );