shorter param

This commit is contained in:
Steffen Schröder 2014-06-14 18:54:37 +02:00
parent 26911c0071
commit 54441ab65d

View File

@ -254,7 +254,7 @@ class ErrorHandler {
$type = gettype($arg);
$string .= $type . '(';
if (is_string($arg)) {
print_r(substr($arg, 0, 50), true);
print_r(substr($arg, 0, 20), true);
} else {
print_r($arg, true);
}