diff -r 4d9a4da1975b -r 4da2dfc28728 includes/common.php --- a/includes/common.php Tue Jan 01 22:30:53 2008 -0500 +++ b/includes/common.php Tue Jan 01 22:50:49 2008 -0500 @@ -45,10 +45,14 @@ * @return float */ -function microtime_float() +// First check to see if something already declared this function.... it happens often. +if ( !function_exists('microtime_float') ) { - list($usec, $sec) = explode(" ", microtime()); - return ((float)$usec + (float)$sec); + function microtime_float() + { + list($usec, $sec) = explode(" ", microtime()); + return ((float)$usec + (float)$sec); + } } // Determine starting time