diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 560dde4a085f75cba5cc987daf3f34f9b711e991..e5a5ef735517a80be555ef6589050fa0c1e89056 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,6 +1,6 @@ // $Id$ -Drupal 6.0, xxxx-xx-xx (development version) +Drupal 6.0-rc1, 2007-12-20 ---------------------- - New, faster and better menu system. - New watchdog as a hook functionality. diff --git a/includes/common.inc b/includes/common.inc index ecbc3dfff02531d356fe2b0909078cc3ff6fbe7c..6a7fcc6b82931c8d3881eaa88e6c1e396ae14243 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -578,7 +578,7 @@ function drupal_error_handler($errno, $message, $filename, $line, $context) { return; } - if ($errno & (E_ALL)) { + if ($errno & (E_ALL ^ E_NOTICE)) { $types = array(1 => 'error', 2 => 'warning', 4 => 'parse error', 8 => 'notice', 16 => 'core error', 32 => 'core warning', 64 => 'compile error', 128 => 'compile warning', 256 => 'user error', 512 => 'user warning', 1024 => 'user notice', 2048 => 'strict warning'); // For database errors, we want the line number/file name of the place that diff --git a/modules/system/system.module b/modules/system/system.module index 573562c11c3c6fe4a97319a69d2bc769700f30b4..e6f328de65f667b71de0751fae6b51703251b3ec 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -9,7 +9,7 @@ /** * The current system version. */ -define('VERSION', '6.0-dev'); +define('VERSION', '6.0-rc1'); /** * Core API compatibility.