? .DS_Store ? authorize-php-workflow.patch ? modules/.DS_Store Index: authorize.php =================================================================== RCS file: /cvs/drupal/drupal/authorize.php,v retrieving revision 1.9 diff -u -p -r1.9 authorize.php --- authorize.php 24 Nov 2010 18:14:25 -0000 1.9 +++ authorize.php 29 Nov 2010 23:06:35 -0000 @@ -140,12 +140,13 @@ if (authorize_access_allowed()) { if (is_array($results['tasks'])) { $links += $results['tasks']; } - - $links = array_merge($links, array( - l(t('Administration pages'), 'admin'), - l(t('Front page'), ''), - )); - + else { + $links = array_merge($links, array( + l(t('Administration pages'), 'admin'), + l(t('Front page'), ''), + )); + } + $output .= theme('item_list', array('items' => $links, 'title' => t('Next steps'))); } // If a batch is running, let it run. Index: modules/system/system.updater.inc =================================================================== RCS file: /cvs/drupal/drupal/modules/system/system.updater.inc,v retrieving revision 1.9 diff -u -p -r1.9 system.updater.inc --- modules/system/system.updater.inc 19 Nov 2010 20:38:22 -0000 1.9 +++ modules/system/system.updater.inc 29 Nov 2010 23:06:35 -0000 @@ -77,6 +77,7 @@ class ModuleUpdater extends Updater impl 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 imple public function postInstallTasks() { return array( l(t('Set the !project theme as default', array('!project' => $this->title)), 'admin/appearance'), + l(t('Administration pages'), 'admin'), ); } }