diff options
author | Andrey Andreev <narf@devilix.net> | 2013-07-17 19:08:33 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2013-07-17 19:08:33 +0200 |
commit | 903f31bd683084d96909f2b14acadfe5c34b4c41 (patch) | |
tree | 3700f16dfc788bb4ae05ce05912754564565ab00 /system/libraries/Profiler.php | |
parent | e18de50dc1a4369aef18df9b368f8bfb0f9177d9 (diff) | |
parent | 164a1f28dd8f8093d260748e0d85fa714f232a57 (diff) |
Merge pull request #2447 from rlerdorf/develop
A few minor fixes and cleanups
Diffstat (limited to 'system/libraries/Profiler.php')
-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 0c60efb8b..ed64f0a59 100644 --- a/system/libraries/Profiler.php +++ b/system/libraries/Profiler.php @@ -264,7 +264,7 @@ class CI_Profiler { foreach ($db->queries as $key => $val) { $time = number_format($db->query_times[$key], 4); - $val = highlight_code($val, ENT_QUOTES); + $val = highlight_code($val); foreach ($highlight as $bold) { @@ -554,4 +554,4 @@ class CI_Profiler { } /* End of file Profiler.php */ -/* Location: ./system/libraries/Profiler.php */
\ No newline at end of file +/* Location: ./system/libraries/Profiler.php */ |