FIX: MySQLQuery::seek() failed to return a row

This commit is contained in:
Loz Calver 2017-01-12 14:51:19 +00:00
parent 9ee3be9337
commit 30d125f144
1 changed files with 2 additions and 1 deletions

View File

@ -39,7 +39,8 @@ class MySQLQuery extends Query
public function seek($row)
{
if (is_object($this->handle)) {
return $this->handle->data_seek($row);
$this->handle->data_seek($row);
return $this->handle->fetch_assoc();
}
return null;
}