diff options
-rw-r--r-- | includes/bootstrap.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index a6e5e9b8a..05b172bea 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -39,7 +39,7 @@ function timer_start($name) { list($usec, $sec) = explode(' ', microtime()); $timers[$name]['start'] = (float)$usec + (float)$sec; - $timers[$name]['count'] = isset($timers[$name]['count']) ? $timers[$name]['count']++ : 1; + $timers[$name]['count'] = isset($timers[$name]['count']) ? ++$timers[$name]['count'] : 1; } /** |