Index: includes/bootstrap.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/bootstrap.inc,v retrieving revision 1.59 diff -u -F^f -r1.59 bootstrap.inc --- includes/bootstrap.inc 29 Jul 2005 08:18:19 -0000 1.59 +++ includes/bootstrap.inc 30 Jul 2005 17:13:22 -0000 @@ -35,7 +35,7 @@ function timer_start($name) { list($usec, $sec) = explode(' ', microtime()); $timers[$name]['start'] = (float)$usec + (float)$sec; - $timers[$name]['count']++; + $timers[$name]['count'] = isset($timers[$name]['count']) ? $timers[$name]['count']++ : 1; } /**