Index: update.php =================================================================== RCS file: /cvs/drupal/drupal/update.php,v retrieving revision 1.233 diff -u -p -u -p -r1.233 update.php --- update.php 14 Sep 2007 17:46:31 -0000 1.233 +++ update.php 21 Sep 2007 17:16:55 -0000 @@ -415,12 +415,23 @@ function update_results_page() { update_task_list(); // Report end result + if (module_exists('dblog')) { + $log_message = ' All errors have been logged.'; + } + else { + $log_message = ' All errors have been logged.'; + } + if ($_SESSION['update_success']) { - $output = '

Updates were attempted. If you see no failures below, you may proceed happily to the administration pages. Otherwise, you may need to update your database manually. All errors have been logged.

'; + $output = '

Updates were attempted. If you see no failures below, you may proceed happily to the administration pages. Otherwise, you may need to update your database manually.'. $log_message .'

'; } else { list($module, $version) = array_pop(reset($_SESSION['updates_remaining'])); - $output = '

The update process was aborted prematurely while running update #'. $version .' in '. $module .'.module. All other errors have been logged. You may need to check the watchdog database table manually.

'; + $output = '

The update process was aborted prematurely while running update #'. $version .' in '. $module .'.module.'. $log_message; + if (module_exists('dblog')) { + $output .= ' You may need to check the watchdog database table manually.'; + } + $output .= '

'; } if (!empty($GLOBALS['update_free_access'])) {