From a10093d2affd512860a6fca41d678832217723e0 Mon Sep 17 00:00:00 2001 From: Jonathan Robson Date: Thu, 12 Apr 2012 23:13:57 -0500 Subject: [PATCH] PATH_INFO never gets used. See for discussion. --- app/webroot/index.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app/webroot/index.php b/app/webroot/index.php index 14ba634724f..36090de65fa 100644 --- a/app/webroot/index.php +++ b/app/webroot/index.php @@ -86,10 +86,6 @@ trigger_error("CakePHP core could not be found. Check the value of CAKE_CORE_INCLUDE_PATH in APP/webroot/index.php. It should point to the directory containing your " . DS . "cake core directory and your " . DS . "vendors root directory.", E_USER_ERROR); } - if (isset($_SERVER['PATH_INFO']) && $_SERVER['PATH_INFO'] == '/favicon.ico') { - return; - } - App::uses('Dispatcher', 'Routing'); $Dispatcher = new Dispatcher();