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
|
@ -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