From 24c1bf2779b68cfd4a4fa9e9ec9324fc373fb024 Mon Sep 17 00:00:00 2001 From: Julius Date: Wed, 21 May 2014 14:54:28 +0200 Subject: [PATCH] Fixed #77 Fixed #77 - Added "boolean" printer --- includes/reporthelper.class.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/includes/reporthelper.class.php b/includes/reporthelper.class.php index a411328..cdce181 100644 --- a/includes/reporthelper.class.php +++ b/includes/reporthelper.class.php @@ -154,6 +154,8 @@ public static function displayPreferences($prefs) { foreach($values as $key=>$value) { if (is_array($value)) $value = print_r($value, true); + else if(is_bool($value)) + $value = ''; echo ''.$key.''.$value.''; } @@ -328,4 +330,4 @@ private static function formatStackTraceCausedByLine(&$line) { return $line; } -} \ No newline at end of file +}