mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fixing typo in dispatcher. Fixes #420
This commit is contained in:
parent
f8cb20e994
commit
38d53b9359
1 changed files with 1 additions and 1 deletions
|
@ -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'];
|
||||
|
|
Loading…
Reference in a new issue