mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-05-16 12:24:46 -04:00
Fix tag in user query (#3168)
* Fix tag in user query #fix https://github.com/FreshRSS/FreshRSS/issues/3163 * Fix Travis
This commit is contained in:
committed by
GitHub
parent
e527afa2fa
commit
6fac0e40c4
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user