mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Adding new error_reporting setting to ShellDispatcher.
This commit is contained in:
parent
036bb620fa
commit
f078517002
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ class ShellDispatcher {
|
|||
function __initConstants() {
|
||||
if (function_exists('ini_set')) {
|
||||
ini_set('display_errors', '1');
|
||||
ini_set('error_reporting', E_ALL);
|
||||
ini_set('error_reporting', E_ALL & ~E_DEPRECATED);
|
||||
ini_set('html_errors', false);
|
||||
ini_set('implicit_flush', true);
|
||||
ini_set('max_execution_time', 0);
|
||||
|
|
Loading…
Reference in a new issue