Commit 84813391 authored by Bong Cosca's avatar Bong Cosca
Browse files

Bug fix: Incomplete stringify() when DEBUG<3 (Issue #432)

parent 113a82bc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -438,7 +438,7 @@ final class Base {
		switch (gettype($arg)) {
			case 'object':
				$str='';
				if ($this->hive['DEBUG']>2 && get_class($arg)!='Closure')
				if (get_class($arg)!='Closure')
					foreach ((array)$arg as $key=>$val) {
						$str.=($str?',':'').$this->stringify(
							preg_replace('/[\x00].+?[\x00]/','',$key)).'=>'.