mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-09-07 12:02:41 +00:00
Fixing assigned by reference on php 4, removing reference in Cache::engine()
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@4941 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
237504541e
commit
5d4e0e6a62
2 changed files with 2 additions and 2 deletions
|
@ -99,7 +99,7 @@ class Cache extends Object {
|
|||
* @param array $parmas Optional associative array of parameters passed to the engine
|
||||
* @return boolean True on success, false on failure
|
||||
*/
|
||||
function engine($name = 'File', &$params = array()) {
|
||||
function engine($name = 'File', $params = array()) {
|
||||
if(defined('DISABLE_CACHE')) {
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue