mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 02:56:15 +00:00
Fixing File class loading for FileEngine when called from console
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6550 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
35397debc8
commit
1ddeb7fbfe
1 changed files with 2 additions and 1 deletions
3
cake/libs/cache/file.php
vendored
3
cake/libs/cache/file.php
vendored
|
@ -30,8 +30,9 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
if (!class_exists('File')) {
|
if (!class_exists('File')) {
|
||||||
App::import('Core', 'File');
|
uses('file');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* File Storage engine for cache
|
* File Storage engine for cache
|
||||||
*
|
*
|
||||||
|
|
Loading…
Add table
Reference in a new issue