Index: bootstrap.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/bootstrap.inc,v retrieving revision 1.51 diff -u -Ff -r1.51 bootstrap.inc --- bootstrap.inc 7 Jun 2005 18:54:37 -0000 1.51 +++ bootstrap.inc 14 Jun 2005 07:37:29 -0000 @@ -30,7 +30,12 @@ function timer_start($name) { list($usec, $sec) = explode(' ', microtime()); $timers[$name]['start'] = (float)$usec + (float)$sec; - $timers[$name]['count']++; + if(isset($timers[$name]['count'])) { + $timers[$name]['count'] += 1; + } + else { + $timers[$name]['count'] = 1; + } } /**