diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-11-30 06:19:47 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-11-30 06:19:47 +0000 |
commit | 6c881d9c5a379ea6b94b07f5b17613940ebbcc50 (patch) | |
tree | a55ab893bf897251b9ba50a40a74fceb2f65acd3 /modules | |
parent | 35a08a6780f7113d793e6285fdd62edd7bdec602 (diff) | |
download | brdo-6c881d9c5a379ea6b94b07f5b17613940ebbcc50.tar.gz brdo-6c881d9c5a379ea6b94b07f5b17613940ebbcc50.tar.bz2 |
#606190 follow-up by rschwab, dww, Bojhan: Better workflow links in update manager.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system/system.updater.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/system/system.updater.inc b/modules/system/system.updater.inc index f8b9cb6a1..c86a518bb 100644 --- a/modules/system/system.updater.inc +++ b/modules/system/system.updater.inc @@ -77,6 +77,7 @@ class ModuleUpdater extends Updater implements DrupalUpdaterInterface { public function postInstallTasks() { return array( l(t('Enable newly added modules'), 'admin/modules'), + l(t('Administration pages'), 'admin'), ); } @@ -146,6 +147,7 @@ class ThemeUpdater extends Updater implements DrupalUpdaterInterface { public function postInstallTasks() { return array( l(t('Set the !project theme as default', array('!project' => $this->title)), 'admin/appearance'), + l(t('Administration pages'), 'admin'), ); } } |