Turned off error reporting
This commit is contained in:
parent
4ddc568e62
commit
7efd7b08a2
|
|
@ -1,3 +1,4 @@
|
||||||
|
php_value error_reporting 30711
|
||||||
<IfModule mod_rewrite.c>
|
<IfModule mod_rewrite.c>
|
||||||
RewriteEngine on
|
RewriteEngine on
|
||||||
RewriteRule ^$ webroot/ [L]
|
RewriteRule ^$ webroot/ [L]
|
||||||
|
|
|
||||||
|
|
@ -92,7 +92,7 @@ class Debugger extends Object {
|
||||||
* @access public
|
* @access public
|
||||||
* @static
|
* @static
|
||||||
*/
|
*/
|
||||||
function &getInstance($class = null) {
|
function &getInstance($class = null) {
|
||||||
static $instance = array();
|
static $instance = array();
|
||||||
if (!empty($class)) {
|
if (!empty($class)) {
|
||||||
if (!$instance || strtolower($class) != strtolower(get_class($instance[0]))) {
|
if (!$instance || strtolower($class) != strtolower(get_class($instance[0]))) {
|
||||||
|
|
@ -573,5 +573,6 @@ class Debugger extends Object {
|
||||||
|
|
||||||
if (!defined('DISABLE_DEFAULT_ERROR_HANDLING')) {
|
if (!defined('DISABLE_DEFAULT_ERROR_HANDLING')) {
|
||||||
Debugger::invoke(Debugger::getInstance());
|
Debugger::invoke(Debugger::getInstance());
|
||||||
|
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
Loading…
Reference in a new issue