Просмотр исходного кода

Merge pull request #4600 from tarwin/development

"error_reporting" in in Boot was set to not catch E_STRICT, but the h…
Simon Krajewski 10 лет назад
Родитель
Сommit
d7d2f1608b
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      std/php/Boot.hx

+ 1 - 1
std/php/Boot.hx

@@ -862,7 +862,7 @@ class Enum {
 }
 
 error_reporting(E_ALL & ~E_STRICT);
-set_error_handler('_hx_error_handler', E_ALL);
+set_error_handler('_hx_error_handler', E_ALL & ~E_STRICT);
 set_exception_handler('_hx_exception_handler');
 
 php_Boot::$qtypes = array();