mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Merge pull request #68 from Symplicity/patch1
If id field is not there, do not attempt to key array on it
This commit is contained in:
commit
84301044ab
1 changed files with 1 additions and 1 deletions
|
@ -593,7 +593,7 @@ abstract class LiskDAO {
|
|||
|
||||
foreach ($rows as $row) {
|
||||
$obj = clone $this;
|
||||
if ($id_key) {
|
||||
if ($id_key && isset($row[$id_key])) {
|
||||
$result[$row[$id_key]] = $obj->loadFromArray($row);
|
||||
} else {
|
||||
$result[] = $obj->loadFromArray($row);
|
||||
|
|
Loading…
Reference in a new issue