mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fix notice when passing false.
This commit is contained in:
parent
68de980972
commit
b68f1cbb1f
1 changed files with 18 additions and 16 deletions
|
@ -1566,23 +1566,25 @@ class DboSource extends DataSource {
|
|||
// Make one pass through children and collect by parent key
|
||||
// Make second pass through parents and associate children
|
||||
$mergedByFK = array();
|
||||
foreach ($assocResultSet as $data) {
|
||||
$fk = $data[$association][$foreignKey];
|
||||
if (! array_key_exists($fk, $mergedByFK)) {
|
||||
$mergedByFK[$fk] = array();
|
||||
}
|
||||
if (count($data) > 1) {
|
||||
$data = array_merge($data[$association], $data);
|
||||
unset($data[$association]);
|
||||
foreach ($data as $key => $name) {
|
||||
if (is_numeric($key)) {
|
||||
$data[$association][] = $name;
|
||||
unset($data[$key]);
|
||||
}
|
||||
if (is_array($assocResultSet)) {
|
||||
foreach ($assocResultSet as $data) {
|
||||
$fk = $data[$association][$foreignKey];
|
||||
if (! array_key_exists($fk, $mergedByFK)) {
|
||||
$mergedByFK[$fk] = array();
|
||||
}
|
||||
if (count($data) > 1) {
|
||||
$data = array_merge($data[$association], $data);
|
||||
unset($data[$association]);
|
||||
foreach ($data as $key => $name) {
|
||||
if (is_numeric($key)) {
|
||||
$data[$association][] = $name;
|
||||
unset($data[$key]);
|
||||
}
|
||||
}
|
||||
$mergedByFK[$fk][] = $data;
|
||||
} else {
|
||||
$mergedByFK[$fk][] = $data[$association];
|
||||
}
|
||||
$mergedByFK[$fk][] = $data;
|
||||
} else {
|
||||
$mergedByFK[$fk][] = $data[$association];
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue