Skip to content

Commit

Permalink
Merge pull request #12 from Flowpack/1.2
Browse files Browse the repository at this point in the history
Merge: 1.2 into "1.3"
  • Loading branch information
kitsunet authored Jul 5, 2016
2 parents 9abe86d + 38fc285 commit e807dba
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Classes/Flowpack/SimpleSearch/Domain/Service/SqLiteIndex.php
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,10 @@ public function findOneByIdentifier($identifier) {
public function query($query) {
$result = $this->connection->query($query);
$resultArray = array();
if ($result === false) {
return $resultArray;
}

while ($resultRow = $result->fetchArray(SQLITE3_ASSOC)) {
$resultArray[] = $resultRow;
}
Expand Down

0 comments on commit e807dba

Please sign in to comment.