From b796ef1bd7ac0448edb831cd020a85d193fc150f Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 26 Jul 2011 16:24:41 -0500 Subject: [PATCH] Remove time echo from index.php. Whoops! --- public/index.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/public/index.php b/public/index.php index 70cfc3cf..b0b63b90 100644 --- a/public/index.php +++ b/public/index.php @@ -8,8 +8,6 @@ * @link http://laravel.com */ -$time = microtime(true); - // -------------------------------------------------------------- // Define the framework paths. // -------------------------------------------------------------- @@ -146,6 +144,4 @@ // -------------------------------------------------------------- // Send the response to the browser. // -------------------------------------------------------------- -$response->send(); - -echo (microtime(true) - $time) * 1000; \ No newline at end of file +$response->send(); \ No newline at end of file