summaryrefslogtreecommitdiffstats
path: root/system/libraries/Profiler.php
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2007-04-30 13:54:45 +0200
committerDerek Allard <derek.allard@ellislab.com>2007-04-30 13:54:45 +0200
commite6c4f7b7bcf96117bdcbd885b3ea4a4f1a7b570d (patch)
treeef8109e109987d2979331a1259f8cab89f33cb87 /system/libraries/Profiler.php
parent95ea41d6f7415a2c7b891fea5e0262be90db6ea8 (diff)
fixed bug in output
Diffstat (limited to 'system/libraries/Profiler.php')
-rw-r--r--system/libraries/Profiler.php2
1 files changed, 1 insertions, 1 deletions
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 .= "<tr><td width='50%' style='color:#000;background-color:#ddd;'>&#36;_POST[".$key."]&nbsp;&nbsp;</td><td width='50%' style='color:#009900;font-weight:normal;background-color:#ddd;'>".htmlspecialchars(stripslashes($val))."</td></tr>\n";
- $output .= "<tr><td width='50%' style='color:#000;background-color:#ddd;'>$_POST[".$key."] </td><td width='50%' style='color:#009900;font-weight:normal;background-color:#ddd;'>";
+ $output .= "<tr><td width='50%' style='color:#000;background-color:#ddd;'>".$_POST[$key]." </td><td width='50%' style='color:#009900;font-weight:normal;background-color:#ddd;'>";
if (is_array($val))
{
$output .= "<pre>" . htmlspecialchars(stripslashes(print_r($val, true))) . "</pre>";