diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-09-15 07:33:46 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-09-15 07:33:46 +0000 |
commit | 9c2f47eafd1aafbcc5cd2aa58b5e6c069f78c8dd (patch) | |
tree | 2f3712a49409c64c0adbef8959a7a74654a803f6 /includes | |
parent | 86a6cd4ef3c80c882c3f279f0823327e5da8b03c (diff) | |
download | brdo-9c2f47eafd1aafbcc5cd2aa58b5e6c069f78c8dd.tar.gz brdo-9c2f47eafd1aafbcc5cd2aa58b5e6c069f78c8dd.tar.bz2 |
Back to devopment version, now that we have the beta 1 tagged and released
Diffstat (limited to 'includes')
-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 f642515f2..d781cbc4d 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -543,7 +543,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 |