diff options
author | Rasmus Lerdorf <rasmus@php.net> | 2013-05-18 16:29:56 +0200 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 2013-05-18 16:44:12 +0200 |
commit | 164a1f28dd8f8093d260748e0d85fa714f232a57 (patch) | |
tree | 91228114f01b2f6a9af7ca3af7a8611efbe14405 /system/libraries/Profiler.php | |
parent | 998607025296044cd71b7ab9da7fe3551b1e3ac7 (diff) |
highlight_code() doesn't take an ENT_QUOTES arg
Signed-off-by: Rasmus Lerdorf <rasmus@php.net>
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 3c7ce5406..7ce56931c 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 */ |