diff options
author | Andrey Andreev <narf@devilix.net> | 2019-10-08 10:15:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-08 10:15:25 +0200 |
commit | b92da898b46acde1181347941d0a7413d19ad88e (patch) | |
tree | d5724d321ebf1c319d0d745939a2833ad695994d /system/libraries/Profiler.php | |
parent | 2229e5c96174171d9eec0d595e7693b987374e95 (diff) | |
parent | 6f21b77955e5089bc07881adb209d2c23d9ba461 (diff) |
Merge branch 'develop' into patch-1
Diffstat (limited to 'system/libraries/Profiler.php')
-rw-r--r-- | system/libraries/Profiler.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/system/libraries/Profiler.php b/system/libraries/Profiler.php index 77af7b99b..d7a171f26 100644 --- a/system/libraries/Profiler.php +++ b/system/libraries/Profiler.php @@ -486,13 +486,13 @@ class CI_Profiler { { $pre = ''; $pre_close = ''; - + if (is_array($val) OR is_object($val)) { $val = print_r($val, TRUE); - + $pre = '<pre>' ; - $pre_close = '</pre>'; + $pre_close = '</pre>'; } $output .= '<tr><td style="padding:5px;vertical-align:top;color:#900;background-color:#ddd;">' @@ -524,13 +524,13 @@ class CI_Profiler { { $pre = ''; $pre_close = ''; - + if (is_array($val) OR is_object($val)) { $val = print_r($val, TRUE); - + $pre = '<pre>' ; - $pre_close = '</pre>'; + $pre_close = '</pre>'; } $output .= '<tr><td style="padding:5px;vertical-align:top;color:#900;background-color:#ddd;">' |