diff options
| author | 2020-09-02 08:55:43 +0200 | |
|---|---|---|
| committer | 2020-09-02 08:55:43 +0200 | |
| commit | 6fac0e40c4d3bc0e51a124015dcde9b7d766f7b5 (patch) | |
| tree | 5e938691a637848410d3874f404b466ca8073d6c | |
| parent | e527afa2fa278dd344106ced9b882c1daddcc042 (diff) | |
Fix tag in user query (#3168)
* Fix tag in user query
#fix https://github.com/FreshRSS/FreshRSS/issues/3163
* Fix Travis
| -rw-r--r-- | app/Models/UserQuery.php | 2 | ||||
| -rw-r--r-- | p/themes/Ansum/_layout.scss | 2 | ||||
| -rw-r--r-- | p/themes/Mapco/_layout.scss | 2 |
3 files changed, 5 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 { diff --git a/p/themes/Ansum/_layout.scss b/p/themes/Ansum/_layout.scss index a75601d06..bdb0b61e7 100644 --- a/p/themes/Ansum/_layout.scss +++ b/p/themes/Ansum/_layout.scss @@ -38,6 +38,7 @@ &.search { // text-align: center; // width: 50%; + input { width: 230px; color: $sid-font-color; @@ -100,6 +101,7 @@ // border-left-width: 0; // width: 3rem; + &:hover { // background-color: $main-first-alt; } diff --git a/p/themes/Mapco/_layout.scss b/p/themes/Mapco/_layout.scss index c7c0849b4..826c74590 100644 --- a/p/themes/Mapco/_layout.scss +++ b/p/themes/Mapco/_layout.scss @@ -38,6 +38,7 @@ &.search { // text-align: center; // width: 50%; + input { width: 230px; color: $sid-font-color; @@ -100,6 +101,7 @@ // border-left-width: 0; // width: 3rem; + &:hover { // background-color: $main-first-alt; } |
