Skip to content

Commit

Permalink
Adding new error_reporting setting to ShellDispatcher.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Sep 7, 2009
1 parent 036bb62 commit f078517
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cake/console/cake.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ function __construct($args = array()) {
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);
Expand Down

0 comments on commit f078517

Please sign in to comment.