From c71efc8f2eaa3677862326e5077720a0a7ff1dbb Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Tue, 31 Mar 2015 16:59:40 +0200 Subject: [PATCH] Avoid pb with scrutinizer --- htdocs/core/lib/functions.lib.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/htdocs/core/lib/functions.lib.php b/htdocs/core/lib/functions.lib.php index c75387210aa..f5e5cc6f10f 100644 --- a/htdocs/core/lib/functions.lib.php +++ b/htdocs/core/lib/functions.lib.php @@ -4867,8 +4867,9 @@ function printCommonFooter($zone='private') print ''."\n"; // Add Xdebug coverage of code - if (defined('XDEBUGCOVERAGE')) { - var_dump(xdebug_get_code_coverage()); + if (defined('XDEBUGCOVERAGE')) + { + print_r(xdebug_get_code_coverage()); } }