aboutsummaryrefslogtreecommitdiff
path: root/app/Models/UserQuery.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Models/UserQuery.php')
-rw-r--r--app/Models/UserQuery.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Models/UserQuery.php b/app/Models/UserQuery.php
index f607084f8..b882a4680 100644
--- a/app/Models/UserQuery.php
+++ b/app/Models/UserQuery.php
@@ -153,7 +153,7 @@ class FreshRSS_UserQuery {
if ($this->tag_dao == null) {
throw new FreshRSS_DAO_Exception('Tag DAO is not loaded in UserQuery');
}
- $category = $this->category_dao->searchById($id);
+ $tag = $this->tag_dao->searchById($id);
if ($tag) {
$this->get_name = $tag->name();
} else {