summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-12-20 22:41:24 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-12-20 22:41:24 +0000
commitefd544136b51936e3eaada121c602e35f5d9faae (patch)
tree63d1282eac5ebbb913de59f1538adc8e57a2b53d /includes
parentde7c276845422154993e4983c87df3afb0b38757 (diff)
downloadbrdo-efd544136b51936e3eaada121c602e35f5d9faae.tar.gz
brdo-efd544136b51936e3eaada121c602e35f5d9faae.tar.bz2
Gearing up for Drupal 6 RC1
Diffstat (limited to 'includes')
-rw-r--r--includes/common.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc
index ecbc3dfff..6a7fcc6b8 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