Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/logreader.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2016-12-22 19:04:48 +0300
committerRobin Appelman <robin@icewind.nl>2016-12-22 19:04:48 +0300
commita2c6fc3b340591736fd09c7f4fc256b3876d4ffc (patch)
tree5684627554ae285541ba39ea32de4ea72537f9a6
parentf330d3112c6a85f3e2ec3cce3bd0973fa5cf0768 (diff)
search more rows
-rw-r--r--lib/Controller/LogController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Controller/LogController.php b/lib/Controller/LogController.php
index 7820bbc..c038e0b 100644
--- a/lib/Controller/LogController.php
+++ b/lib/Controller/LogController.php
@@ -79,7 +79,7 @@ class LogController extends Controller {
*/
public function search($query = '', $count = 50, $offset = 0) {
$iterator = $this->getLogIterator();
- $iterator = new \LimitIterator($iterator, 0, 10000); // limit the number of message we search to avoid huge search times
+ $iterator = new \LimitIterator($iterator, 0, 100000); // limit the number of message we search to avoid huge search times
$iterator->rewind();
$iterator = new SearchFilter($iterator, $query);
$iterator->rewind();