From a35e9d9c399631652cb18ed38069df6e426d7cbe Mon Sep 17 00:00:00 2001 From: TtuxX Date: Tue, 9 Dec 2014 00:19:08 +0100 Subject: [PATCH] Remove the bookmark tags display limit Set the limit from 10 (original default value) to -1 (load all the tags you ever created) --- controller/lib/bookmarks.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controller/lib/bookmarks.php b/controller/lib/bookmarks.php index 0a9fcb46..712b3cd6 100644 --- a/controller/lib/bookmarks.php +++ b/controller/lib/bookmarks.php @@ -39,7 +39,7 @@ class Bookmarks { * @param limit integer of item to return * @return Found Tags */ - public static function findTags($userId, IDb $db, $filterTags = array(), $offset = 0, $limit = 10) { + public static function findTags($userId, IDb $db, $filterTags = array(), $offset = 0, $limit = -1) { $params = array_merge($filterTags, $filterTags); array_unshift($params, $userId); $not_in = '';