This repository was archived by the owner on Jun 2, 2024. It is now read-only.
File tree 3 files changed +10
-2
lines changed 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1
1
Change Log
2
2
==========
3
3
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
+
4
7
### 02/24/2019 - 1.0.23
5
8
* Merged [ Pull Request] ( https://github.com/filebase/Filebase/pull/49 ) Added support for order by multiple columns
6
9
* Merged [ Pull Request] ( https://github.com/filebase/Filebase/pull/46 ) Added ability to query document ids (internal id)
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ class Database
15
15
* Stores the version of Filebase
16
16
* use $db->getVersion()
17
17
*/
18
- const VERSION = '1.0.23 ' ;
18
+ const VERSION = '1.0.24 ' ;
19
19
20
20
/**
21
21
* $config
Original file line number Diff line number Diff line change @@ -42,6 +42,10 @@ public function __construct(Database $database)
42
42
}
43
43
}
44
44
45
+ /**
46
+ * loadDocuments
47
+ *
48
+ */
45
49
private function loadDocuments ()
46
50
{
47
51
$ predicates = $ this ->predicate ->get ();
@@ -60,11 +64,12 @@ private function loadDocuments()
60
64
61
65
$ this ->sort ();
62
66
$ this ->offsetLimit ();
63
- return $ this ;
67
+ return $ this ;
64
68
}
65
69
$ this ->documents = $ this ->database ->findAll (true ,false );
66
70
return $ this ;
67
71
}
72
+
68
73
/**
69
74
* run
70
75
*
You can’t perform that action at this time.
0 commit comments