fixed param string

This commit is contained in:
Steffen Schröder 2014-06-14 18:56:59 +02:00
parent 54441ab65d
commit 9647a48fb6

View File

@ -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 .= ')';
}