diff options
author | Derek Jones <derek.jones@ellislab.com> | 2010-05-13 16:03:30 +0200 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2010-05-13 16:03:30 +0200 |
commit | 511e3d72b875401b5cc61a28df45fb65acfd689a (patch) | |
tree | 199d3ef5faa6ca967a9cb68979f6e1772c9f9bb6 /system | |
parent | 2735b3eeb3403ba813aac56ed6f10be536839ff6 (diff) |
added htmlspecialchars to config item output, fixes #41
Diffstat (limited to 'system')
-rw-r--r-- | system/libraries/Profiler.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/libraries/Profiler.php b/system/libraries/Profiler.php index 49a6774c1..0900a300d 100644 --- a/system/libraries/Profiler.php +++ b/system/libraries/Profiler.php @@ -303,7 +303,7 @@ class CI_Profiler { $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>"; + $output .= "<pre>" . htmlspecialchars(stripslashes(print_r($val, TRUE))) . "</pre>"; } else { @@ -464,7 +464,7 @@ class CI_Profiler { $val = print_r($val, TRUE); } - $output .= "<tr><td valign='top' style='color:#900;background-color:#ddd;'>".$config." </td><td style='color:#000;background-color:#ddd;'>".$val."</td></tr>\n"; + $output .= "<tr><td valign='top' style='color:#900;background-color:#ddd;'>".$config." </td><td style='color:#000;background-color:#ddd;'>".htmlspecialchars($val)."</td></tr>\n"; } $output .= "</table>\n"; |