mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 11:06:15 +00:00
closes #4875, fixing uninitialized model group key for fixtures
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@7193 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
a83d373f51
commit
ed6caf5d33
1 changed files with 2 additions and 1 deletions
|
@ -102,7 +102,8 @@ class CakeTestFixture extends Object {
|
||||||
'alias' => $model->alias,
|
'alias' => $model->alias,
|
||||||
'conditions' => array(),
|
'conditions' => array(),
|
||||||
'order' => null,
|
'order' => null,
|
||||||
'limit' => null
|
'limit' => null,
|
||||||
|
'group' => null
|
||||||
);
|
);
|
||||||
|
|
||||||
foreach ($query['fields'] as $index => $field) {
|
foreach ($query['fields'] as $index => $field) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue