diff options
Diffstat (limited to 'application/LinkDB.php')
-rw-r--r-- | application/LinkDB.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/LinkDB.php b/application/LinkDB.php index 7e29ee8e..ff82446f 100644 --- a/application/LinkDB.php +++ b/application/LinkDB.php | |||
@@ -310,7 +310,7 @@ class LinkDB implements Iterator, Countable, ArrayAccess | |||
310 | // FIXME: accept double-quotes to search for a string "as is"? | 310 | // FIXME: accept double-quotes to search for a string "as is"? |
311 | $filtered = array(); | 311 | $filtered = array(); |
312 | $search = mb_convert_case($searchterms, MB_CASE_LOWER, 'UTF-8'); | 312 | $search = mb_convert_case($searchterms, MB_CASE_LOWER, 'UTF-8'); |
313 | $keys = ['title', 'description', 'url', 'tags']; | 313 | $keys = array('title', 'description', 'url', 'tags'); |
314 | 314 | ||
315 | foreach ($this->links as $link) { | 315 | foreach ($this->links as $link) { |
316 | $found = false; | 316 | $found = false; |