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