fixed param string
This commit is contained in:
parent
54441ab65d
commit
9647a48fb6
@ -254,9 +254,9 @@ class ErrorHandler {
|
||||
$type = gettype($arg);
|
||||
$string .= $type . '(';
|
||||
if (is_string($arg)) {
|
||||
print_r(substr($arg, 0, 20), true);
|
||||
$string .= print_r(substr($arg, 0, 20), true);
|
||||
} else {
|
||||
print_r($arg, true);
|
||||
$string .= print_r($arg, true);
|
||||
}
|
||||
$string .= ')';
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user