Index: branches/RC/core/kernel/nparser/compiler.php =================================================================== diff -u -r11214 -r11239 --- branches/RC/core/kernel/nparser/compiler.php (.../compiler.php) (revision 11214) +++ branches/RC/core/kernel/nparser/compiler.php (.../compiler.php) (revision 11239) @@ -52,7 +52,11 @@ function SaveError($errno, $errstr, $errfile, $errline, $errcontext) { - $this->Errors[] = array('msg'=>$errstr, 'file'=>$errfile, 'line'=>$errline); + if (defined('DBG_IGNORE_STRICT_ERRORS') && DBG_IGNORE_STRICT_ERRORS && defined('E_STRICT') && ($errno == E_STRICT)) { + return true; + } + + $this->Errors[] = Array ('msg' => $errstr, 'file' => $errfile, 'line' => $errline); return true; }