mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +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');
|
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'];
|
||||||
|
|
Loading…
Reference in a new issue