From 7c3ccbe14916c43025d5a6bced43bebb2b683518 Mon Sep 17 00:00:00 2001 From: Joseph Lenton Date: Fri, 15 Mar 2013 04:52:56 +0000 Subject: [PATCH] fixed concrete 5 options type --- src/php_error.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/php_error.php b/src/php_error.php index 719667c..32cca25 100644 --- a/src/php_error.php +++ b/src/php_error.php @@ -1258,7 +1258,7 @@ public function __construct( $options=null ) { $this->defaultErrorReportingOn = E_ERROR | E_WARNING | E_PARSE | E_USER_DEPRECATED & ~E_DEPRECATED & ~E_STRICT; } - concrete5 = ErrorHandler::optionsPop( $options, 'concrete5', false ); + $concrete5 = ErrorHandler::optionsPop( $options, 'concrete5', false ); if ( $concrete5 ) { $this->defaultErrorReportingOn = E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED; }