diff options
author | Felipe Pena <felipe@php.net> | 2008-07-22 19:59:37 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2008-07-22 19:59:37 +0000 |
commit | 1fb3313f7584b8554f774d8351a0e283fe814ade (patch) | |
tree | ebc2bc02a096d1a30b906d7f8a2eb95da6beb259 /run-tests.php | |
parent | 529d73f9d45df8da1241cf0783beabef78a6b748 (diff) | |
download | php-git-1fb3313f7584b8554f774d8351a0e283fe814ade.tar.gz |
- MFH: The error level must be E_ALL | E_STRICT.
Diffstat (limited to 'run-tests.php')
-rwxr-xr-x | run-tests.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run-tests.php b/run-tests.php index 395f5f9032..ad73e0db25 100755 --- a/run-tests.php +++ b/run-tests.php @@ -189,7 +189,7 @@ $ini_overwrites = array( 'safe_mode=0', 'disable_functions=', 'output_buffering=Off', - 'error_reporting=' . ((PHP_MAJOR_VERSION == 5) ? '32767' : '30719'), + 'error_reporting=' . (E_ALL | E_STRICT), 'display_errors=1', 'display_startup_errors=1', 'log_errors=0', |