diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-30 22:43:55 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-30 22:43:55 +0000 |
commit | c2665870c47b30bf35b91dd471d961c170f5a131 (patch) | |
tree | 0c24f90388fcbf0b3b7244fa31ba517e4e775ccd /includes/common.inc | |
parent | 46c1d9239f4996bf0320c17fcac7443be6c475e5 (diff) | |
download | brdo-c2665870c47b30bf35b91dd471d961c170f5a131.tar.gz brdo-c2665870c47b30bf35b91dd471d961c170f5a131.tar.bz2 |
Preparing for RC3
Diffstat (limited to 'includes/common.inc')
-rw-r--r-- | includes/common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc index 789a01673..d585f324a 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -577,7 +577,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', 4096 => 'recoverable fatal error'); // For database errors, we want the line number/file name of the place that |