From e6c4f7b7bcf96117bdcbd885b3ea4a4f1a7b570d Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Mon, 30 Apr 2007 11:54:45 +0000 Subject: fixed bug in output --- system/libraries/Profiler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system/libraries/Profiler.php') diff --git a/system/libraries/Profiler.php b/system/libraries/Profiler.php index cdc4f6fc9..ffd664a88 100644 --- a/system/libraries/Profiler.php +++ b/system/libraries/Profiler.php @@ -166,7 +166,7 @@ class CI_Profiler { } // $output .= "$_POST[".$key."]  ".htmlspecialchars(stripslashes($val))."\n"; - $output .= "$_POST[".$key."] "; + $output .= "".$_POST[$key]." "; if (is_array($val)) { $output .= "
" . htmlspecialchars(stripslashes(print_r($val, true))) . "
"; -- cgit v1.2.3-24-g4f1b