From 38d53b9359473998b99971011b3800ad15f49dbd Mon Sep 17 00:00:00 2001 From: Mark Story Date: Thu, 4 Mar 2010 22:04:50 -0500 Subject: [PATCH] Fixing typo in dispatcher. Fixes #420 --- cake/dispatcher.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cake/dispatcher.php b/cake/dispatcher.php index 49551694b..f3edc7050 100644 --- a/cake/dispatcher.php +++ b/cake/dispatcher.php @@ -603,7 +603,7 @@ class Dispatcher extends Object { header('HTTP/1.1 404 Not Found'); return $this->_stop(); } elseif ($isCss) { - include WWW_ROOT . DS . $filter['css']; + include WWW_ROOT . DS . $filters['css']; $this->_stop(); } elseif ($isJs) { include WWW_ROOT . DS . $filters['js'];