Index: D6-core-simpletest.patch =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/simpletest/Attic/D6-core-simpletest.patch,v retrieving revision 1.1.2.6 diff -u -r1.1.2.6 D6-core-simpletest.patch --- D6-core-simpletest.patch 25 Sep 2009 20:34:38 -0000 1.1.2.6 +++ D6-core-simpletest.patch 6 Nov 2009 21:42:08 -0000 @@ -4,7 +4,7 @@ retrieving revision 1.206.2.13 diff -u -r1.206.2.13 bootstrap.inc --- includes/bootstrap.inc 14 Sep 2009 13:33:39 -0000 1.206.2.13 -+++ includes/bootstrap.inc 25 Sep 2009 20:32:42 -0000 ++++ includes/bootstrap.inc 6 Nov 2009 21:40:38 -0000 @@ -991,7 +991,7 @@ } @@ -83,10 +83,10 @@ Index: includes/common.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/common.inc,v -retrieving revision 1.756.2.71 -diff -u -r1.756.2.71 common.inc ---- includes/common.inc 23 Sep 2009 09:09:29 -0000 1.756.2.71 -+++ includes/common.inc 25 Sep 2009 20:32:42 -0000 +retrieving revision 1.756.2.73 +diff -u -r1.756.2.73 common.inc +--- includes/common.inc 6 Nov 2009 08:34:58 -0000 1.756.2.73 ++++ includes/common.inc 6 Nov 2009 21:40:40 -0000 @@ -520,7 +520,7 @@ // same time won't interfere with each other as they would if the database // prefix were stored statically in a file or database variable. @@ -96,7 +96,16 @@ } foreach ($headers as $header => $value) { -@@ -2605,6 +2605,15 @@ +@@ -2597,13 +2597,23 @@ + require_once './includes/mail.inc'; + require_once './includes/actions.inc'; + // Set the Drupal custom error handler. +- set_error_handler('drupal_error_handler'); ++ set_error_handler('_drupal_error_handler'); ++ set_exception_handler('_drupal_exception_handler'); + // Emit the correct charset HTTP header. + drupal_set_header('Content-Type: text/html; charset=utf-8'); + // Detect string handling method unicode_check(); // Undo magic quotes fix_gpc_magic(); @@ -112,7 +121,7 @@ // Load all enabled modules module_load_all(); // Let all modules take action before menu system handles the request -@@ -3722,3 +3731,262 @@ +@@ -3721,3 +3731,262 @@ } variable_set('css_js_query_string', $new_character . substr($string_history, 0, 19)); } @@ -381,7 +390,7 @@ retrieving revision 1.113.2.9 diff -u -r1.113.2.9 install.php --- install.php 27 Apr 2009 10:50:35 -0000 1.113.2.9 -+++ install.php 25 Sep 2009 20:32:42 -0000 ++++ install.php 6 Nov 2009 21:40:38 -0000 @@ -20,6 +20,14 @@ require_once './includes/bootstrap.inc'; drupal_bootstrap(DRUPAL_BOOTSTRAP_CONFIGURATION);