diff options
author | admin <devnull@localhost> | 2006-10-31 19:16:12 +0100 |
---|---|---|
committer | admin <devnull@localhost> | 2006-10-31 19:16:12 +0100 |
commit | c6317e8747953575d3d4f553de37533889f504d1 (patch) | |
tree | 020daaece55244d793fa53bf8131caa5c232967b /system | |
parent | 7c807cba83ab368d027a28f4b84ee6a301430e80 (diff) |
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 e03097ab6..1d78da8a8 100644 --- a/system/libraries/Profiler.php +++ b/system/libraries/Profiler.php @@ -83,7 +83,7 @@ class CI_Profiler { foreach ($profile as $key => $val) { $key = ucwords(str_replace(array('_', '-'), ' ', $key)); - $output .= "<tr><td width='50%' style='color:#0000;font-weight:bold;background-color:#ddd;'>".$key." </td><td width='50%' style='color:#990000;font-weight:normal;background-color:#ddd;'>".$val."</td></tr>\n"; + $output .= "<tr><td width='50%' style='color:#000;font-weight:bold;background-color:#ddd;'>".$key." </td><td width='50%' style='color:#990000;font-weight:normal;background-color:#ddd;'>".$val."</td></tr>\n"; } $output .= "</table>\n"; @@ -165,7 +165,7 @@ class CI_Profiler { $key = "'".$key."'"; } - $output .= "<tr><td width='50%' style='color:#0000;background-color:#ddd;'>$_POST[".$key."] </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;'>".htmlspecialchars(stripslashes($val))."</td></tr>\n"; } $output .= "</table>\n"; |