Removing a dead isset() and collapsing an if.

This commit is contained in:
mark_story 2010-12-04 00:24:09 -05:00
parent aef53cd23a
commit 9b55487d4e

View file

@ -175,13 +175,11 @@ class Configure {
}
}
if (isset($config['debug']) || isset($config['log'])) {
if (function_exists('ini_set')) {
if (self::$_values['debug']) {
ini_set('display_errors', 1);
} else {
ini_set('display_errors', 0);
}
if (isset($config['debug']) && function_exists('ini_set')) {
if (self::$_values['debug']) {
ini_set('display_errors', 1);
} else {
ini_set('display_errors', 0);
}
}
return true;