Skip to content

Commit

Permalink
Update: removing E_DEPRECATED and E_STRICT from default errors level.
Browse files Browse the repository at this point in the history
  • Loading branch information
quickapps committed Mar 25, 2012
1 parent 96a0127 commit 33c6dba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QuickApps/Config/core.php
Expand Up @@ -52,7 +52,7 @@
*/
Configure::write('Error', array(
'handler' => 'ErrorHandler::handleError',
'level' => E_ALL,
'level' => E_ALL & ~E_DEPRECATED & ~E_STRICT,
'trace' => true
));

Expand Down

0 comments on commit 33c6dba

Please sign in to comment.