diff options
author | Cristian Riffo Huez <criffoh@gmail.com> | 2013-12-14 02:09:44 +0100 |
---|---|---|
committer | Cristian Riffo Huez <criffoh@gmail.com> | 2013-12-14 02:09:44 +0100 |
commit | 0612e92461bb725835b4731a55d7f76588cd4cf9 (patch) | |
tree | 10ad4689aa9d23fb3a1e1a5330192d370cad0f86 /system/libraries/Profiler.php | |
parent | 37fe56fe9442e728893f6cc2a8cc4cfabf9f14c9 (diff) |
Added post-increment for $count
It has been added the missing post-increment for variable $count.
Diffstat (limited to 'system/libraries/Profiler.php')
-rw-r--r-- | system/libraries/Profiler.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/system/libraries/Profiler.php b/system/libraries/Profiler.php index 50ba1673f..7c889dd96 100644 --- a/system/libraries/Profiler.php +++ b/system/libraries/Profiler.php @@ -278,6 +278,7 @@ class CI_Profiler { } $output .= "</table>\n</fieldset>"; + $count++; } return $output; @@ -563,4 +564,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 */ |