diff options
| author | 2020-09-02 08:55:43 +0200 | |
|---|---|---|
| committer | 2020-09-02 08:55:43 +0200 | |
| commit | 6fac0e40c4d3bc0e51a124015dcde9b7d766f7b5 (patch) | |
| tree | 5e938691a637848410d3874f404b466ca8073d6c /app/Models/UserQuery.php | |
| parent | e527afa2fa278dd344106ced9b882c1daddcc042 (diff) | |
Fix tag in user query (#3168)
* Fix tag in user query
#fix https://github.com/FreshRSS/FreshRSS/issues/3163
* Fix Travis
Diffstat (limited to 'app/Models/UserQuery.php')
| -rw-r--r-- | app/Models/UserQuery.php | 2 |
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 { |
