summaryrefslogtreecommitdiffstats
path: root/lib/public/Search/PagedProvider.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/Search/PagedProvider.php')
-rw-r--r--lib/public/Search/PagedProvider.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Search/PagedProvider.php b/lib/public/Search/PagedProvider.php
index 3bd5b75cc2d..b1294fa6dc4 100644
--- a/lib/public/Search/PagedProvider.php
+++ b/lib/public/Search/PagedProvider.php
@@ -53,7 +53,7 @@ abstract class PagedProvider extends Provider {
*/
public function search($query) {
// old apps might assume they get all results, so we use SIZE_ALL
- $this->searchPaged($query, 1, self::SIZE_ALL);
+ return $this->searchPaged($query, 1, self::SIZE_ALL);
}
/**