From 54441ab65df5f6b434fb2c66bb706c9783f0c06a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schro=CC=88der?= Date: Sat, 14 Jun 2014 18:54:37 +0200 Subject: [PATCH] shorter param --- application/core/ErrorHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/core/ErrorHandler.php b/application/core/ErrorHandler.php index 3c394142..4df789d8 100644 --- a/application/core/ErrorHandler.php +++ b/application/core/ErrorHandler.php @@ -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); }