https://src.bluestatic.org
/
isso.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bc6e813
)
We should also catch E_NOTICE and E_WARNING
author
Robert Sesek <rsesek@bluestatic.org>
Sun, 5 Mar 2006 20:14:34 +0000
(20:14 +0000)
committer
Robert Sesek <rsesek@bluestatic.org>
Sun, 5 Mar 2006 20:14:34 +0000
(20:14 +0000)
kernel.php
patch
|
blob
|
history
diff --git
a/kernel.php
b/kernel.php
index 3cbb34a4377896d9e64c5a2c1c7de76d1b173f97..4a61ee2aaa9083a9f14c6e6dd2d7e10952cb84e5 100644
(file)
--- a/
kernel.php
+++ b/
kernel.php
@@
-765,6
+765,7
@@
class ISSO
// Error
case E_USER_WARNING:
+ case E_WARNING:
$title = 'Warning';
$mode = 2;
if (! (($level & E_USER_WARNING) AND ($level & E_WARNING)) )
@@
-775,6
+776,7
@@
class ISSO
// Warning
case E_USER_NOTICE:
+ case E_NOTICE:
default:
$title = 'Notice';
$mode = 1;