summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-10-17 21:59:31 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-10-17 21:59:31 +0000
commit19b2687ac01acdb1708e9831b9210e1f59921f6e (patch)
treebb8fe724a51f67d88bcbd7f53f3dfd285b1fbf26 /includes
parenta3f3cb346bebb09dd89f31705c43c0c7d5c690d1 (diff)
downloadbrdo-19b2687ac01acdb1708e9831b9210e1f59921f6e.tar.gz
brdo-19b2687ac01acdb1708e9831b9210e1f59921f6e.tar.bz2
Back to being a 6.x development version
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 6b07f20e3..17a70c251 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -557,7 +557,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');
// For database errors, we want the line number/file name of the place that