mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Making code PHP4 friendly again
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@7460 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
fb15d71284
commit
0b5fbe04f6
1 changed files with 4 additions and 4 deletions
|
@ -156,7 +156,7 @@ class CakeTestCase extends UnitTestCase {
|
|||
if (!isset($this->db)) {
|
||||
$this->_initDb();
|
||||
}
|
||||
$classRegistry = ClassRegistry::getInstance();
|
||||
$classRegistry =& ClassRegistry::getInstance();
|
||||
|
||||
if ($controller->uses === false) {
|
||||
$list = array($controller->modelClass);
|
||||
|
@ -169,8 +169,8 @@ class CakeTestCase extends UnitTestCase {
|
|||
|
||||
foreach ($list as $name) {
|
||||
if ((is_array($params['fixturize']) && in_array($name, $params['fixturize'])) || $params['fixturize'] === true) {
|
||||
if (class_exists($name) || App::import('Model', $name)) {
|
||||
$object =& ClassRegistry::init($name);
|
||||
if (class_exists($name) || App::import('Model', $name)) {
|
||||
$object =& ClassRegistry::init($name);
|
||||
|
||||
$db =& ConnectionManager::getDataSource($object->useDbConfig);
|
||||
$db->cacheSources = false;
|
||||
|
@ -728,4 +728,4 @@ class CakeTestCase extends UnitTestCase {
|
|||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
?>
|
||||
|
|
Loading…
Reference in a new issue