Fixing typo in dispatcher. Fixes #420

This commit is contained in:
Mark Story 2010-03-04 22:04:50 -05:00
parent f8cb20e994
commit 38d53b9359

View file

@ -603,7 +603,7 @@ class Dispatcher extends Object {
header('HTTP/1.1 404 Not Found'); header('HTTP/1.1 404 Not Found');
return $this->_stop(); return $this->_stop();
} elseif ($isCss) { } elseif ($isCss) {
include WWW_ROOT . DS . $filter['css']; include WWW_ROOT . DS . $filters['css'];
$this->_stop(); $this->_stop();
} elseif ($isJs) { } elseif ($isJs) {
include WWW_ROOT . DS . $filters['js']; include WWW_ROOT . DS . $filters['js'];