From 61ba51d4b1e374ed263f1e01df1dc2ba97a82a72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 28 Apr 2015 14:33:51 +0200 Subject: [PATCH] Actually return content of the variable, do not print it MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- libraries/Error_Handler.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/Error_Handler.class.php b/libraries/Error_Handler.class.php index 224e8cddeb..3cc06ac0cd 100644 --- a/libraries/Error_Handler.class.php +++ b/libraries/Error_Handler.class.php @@ -305,7 +305,7 @@ class PMA_Error_Handler $retval .= $error->getDisplay(); } } else { - $retval .= var_export($error); + $retval .= var_export($error, true); } } } else {