Skip to content
This repository was archived by the owner on Jun 2, 2024. It is now read-only.

Commit b660650

Browse files
committed
Updated changelog and minor comment block updates.
1 parent a012b72 commit b660650

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Change Log
22
==========
33

4+
### 02/24/2019 - 1.0.24
5+
* Merged [Pull Request](https://github.com/filebase/Filebase/pull/50) Fixed [bug](https://github.com/filebase/Filebase/issues/41) returning unexpected results.
6+
47
### 02/24/2019 - 1.0.23
58
* Merged [Pull Request](https://github.com/filebase/Filebase/pull/49) Added support for order by multiple columns
69
* Merged [Pull Request](https://github.com/filebase/Filebase/pull/46) Added ability to query document ids (internal id)

src/Database.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Database
1515
* Stores the version of Filebase
1616
* use $db->getVersion()
1717
*/
18-
const VERSION = '1.0.23';
18+
const VERSION = '1.0.24';
1919

2020
/**
2121
* $config

src/QueryLogic.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ public function __construct(Database $database)
4242
}
4343
}
4444

45+
/**
46+
* loadDocuments
47+
*
48+
*/
4549
private function loadDocuments()
4650
{
4751
$predicates = $this->predicate->get();
@@ -60,11 +64,12 @@ private function loadDocuments()
6064

6165
$this->sort();
6266
$this->offsetLimit();
63-
return $this;
67+
return $this;
6468
}
6569
$this->documents = $this->database->findAll(true,false);
6670
return $this;
6771
}
72+
6873
/**
6974
* run
7075
*

0 commit comments

Comments
 (0)