mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fixed #1220.
Error produced when accessing css.php in browser git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@3483 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
f08a4d7fa2
commit
4f110a0ef9
1 changed files with 2 additions and 2 deletions
|
@ -26,8 +26,8 @@
|
|||
* @lastmodified $Date$
|
||||
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
||||
*/
|
||||
if (!defined(CAKE_CORE_INCLUDE_PATH)) {
|
||||
die('You can not access this file directly');
|
||||
if (!defined('CAKE_CORE_INCLUDE_PATH')) {
|
||||
header('HTTP/1.1 404 Not Found');
|
||||
}
|
||||
/**
|
||||
* Enter description here...
|
||||
|
|
Loading…
Reference in a new issue