From d6b43c0e2935acd67e0ba125a4c7c2982892d41c Mon Sep 17 00:00:00 2001 From: Mark Story Date: Thu, 2 Sep 2010 16:55:42 -0400 Subject: [PATCH] Removing TIME_START global, use $_SERVER['REQUEST_TIME'] instead. --- cake/bootstrap.php | 1 - 1 file changed, 1 deletion(-) diff --git a/cake/bootstrap.php b/cake/bootstrap.php index d9149d8f7..f6288ee01 100644 --- a/cake/bootstrap.php +++ b/cake/bootstrap.php @@ -25,7 +25,6 @@ if (!defined('E_DEPRECATED')) { error_reporting(E_ALL & ~E_DEPRECATED); require CORE_PATH . 'cake' . DS . 'basics.php'; -$TIME_START = microtime(true); require CORE_PATH . 'cake' . DS . 'config' . DS . 'paths.php'; require LIBS . 'exceptions.php'; require LIBS . 'object.php';