fix - property_exists вместо isset
This commit is contained in:
@ -45,7 +45,7 @@ class SqlResultProvider implements iSqlResultItems
|
|||||||
$this->defineResultItems();
|
$this->defineResultItems();
|
||||||
$result_items_assoc = array();
|
$result_items_assoc = array();
|
||||||
foreach ($this->result_items_base as $item) {
|
foreach ($this->result_items_base as $item) {
|
||||||
if (!isset($item->{$field})) {
|
if (!property_exists($item, $field)) {
|
||||||
throw new ErrorException('Undefined field. ' . $field);
|
throw new ErrorException('Undefined field. ' . $field);
|
||||||
}
|
}
|
||||||
if ($assoc_as_array) {
|
if ($assoc_as_array) {
|
||||||
|
Reference in New Issue
Block a user