From 4448fd5dc0c1da22eeb1912319630e2ee5ee12bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= <gabor@hojtsy.hu> Date: Wed, 22 Oct 2008 19:36:26 +0000 Subject: [PATCH] Now onto 6.7-dev --- CHANGELOG.txt | 3 +++ includes/common.inc | 2 +- modules/system/system.module | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 18ee76d67a2a..71c76412d473 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,5 +1,8 @@ // $Id$ +Drupal 6.7-dev, xxxx-xx-xx (development release) +---------------------- + Drupal 6.6, 2008-10-22 ---------------------- - Fixed security issues, (File inclusion, Cross site scripting), see SA-2008-067 diff --git a/includes/common.inc b/includes/common.inc index 9488bb925319..445261fdc172 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -587,7 +587,7 @@ function drupal_error_handler($errno, $message, $filename, $line, $context) { return; } - if ($errno & (E_ALL ^ E_NOTICE)) { + if ($errno & (E_ALL)) { $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', 4096 => 'recoverable fatal error'); // 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 934a56545190..479c288b2aa0 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -9,7 +9,7 @@ /** * The current system version. */ -define('VERSION', '6.6'); +define('VERSION', '6.7-dev'); /** * Core API compatibility. -- GitLab