From fb52ec5edde0e96a9174aacecc8442ba49b28ab5 Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Tue, 5 Dec 2006 21:37:45 +1300 Subject: [PATCH] Remove duplicate function. --- inc/always.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/inc/always.php b/inc/always.php index bd12318..7436776 100644 --- a/inc/always.php +++ b/inc/always.php @@ -40,15 +40,6 @@ function show_queue() { } } - function duration( $t1, $t2 ) { - // Return a duration, given a "mS S" string such as returned from microtime() - list( $ms1, $s1 ) = explode( " ", $t1 ); - list( $ms2, $s2 ) = explode( " ", $t2 ); - $s1 = $s2 - $s1; - $s1 = $s1 + ( $ms2 - $ms1 ); - return $s1; -} - /////////////////////////////////////////////////////////////////////////////////////////////// // Log the query /////////////////////////////////////////////////////////////////////////////////////////////// -- 2.11.4.GIT