Skip to content

Commit

Permalink
Fix parse error.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Aug 15, 2016
1 parent 778bec2 commit a1ddaa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion turba/lib/Driver/Sql.php
Expand Up @@ -404,7 +404,7 @@ protected function _read($key, $ids, $owner, array $fields,
. $this->_params['table'] . ' WHERE ' . $where;

try {
return $this->_parseRead($blobFields, $this->_db->selectx($query, $values), $dateFields);
return $this->_parseRead($blobFields, $this->_db->select($query, $values), $dateFields);
} catch (Horde_Db_Exception $e) {
throw new Turba_Exception(_("Server error when performing search."));
}
Expand Down

0 comments on commit a1ddaa1

Please sign in to comment.