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
path: root/lib
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2017-02-13 17:26:36 +0300
committerRobin Appelman <robin@icewind.nl>2017-02-13 17:26:36 +0300
commit4ea35678b1621a28d2219bf43094dc23be9d2468 (patch)
tree2c3e5f830e4c7685f3cf663c5eacbbc2aa575584 /lib
parent931328c6122293ac3a20395e1a65a0f4ff7ef5ac (diff)
allow searching in url
Diffstat (limited to 'lib')
-rw-r--r--lib/Log/SearchFilter.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Log/SearchFilter.php b/lib/Log/SearchFilter.php
index 8ffc754..747f71f 100644
--- a/lib/Log/SearchFilter.php
+++ b/lib/Log/SearchFilter.php
@@ -56,6 +56,7 @@ class SearchFilter extends \FilterIterator {
|| stripos($value['app'], $this->query) !== false
|| stripos($value['reqId'], $this->query) !== false
|| stripos($value['user'], $this->query) !== false
+ || stripos($value['url'], $this->query) !== false
|| stripos($this->formatLevel($value['level']), $this->query) !== false;
}
}