diff options
| author | 2014-09-24 14:41:44 +0200 | |
|---|---|---|
| committer | 2014-09-24 14:41:44 +0200 | |
| commit | a12d90d85d86c168a6e8a13345f05897f17958a4 (patch) | |
| tree | d2b78e5b7954f139e9d620b9aae8fd8014947a4d | |
| parent | fe32d14cfa3fdf056e00f279ac7ddd91a9e082d9 (diff) | |
Fix favorite cat doesn't change state button
Fix https://github.com/marienfressinaud/FreshRSS/issues/632
| -rw-r--r-- | app/layout/nav_menu.phtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/layout/nav_menu.phtml b/app/layout/nav_menu.phtml index af2323325..a9e6614e7 100644 --- a/app/layout/nav_menu.phtml +++ b/app/layout/nav_menu.phtml @@ -49,7 +49,7 @@ </a> <?php - if ($this->state & FreshRSS_Entry::STATE_FAVORITE) { + if ($this->state & FreshRSS_Entry::STATE_FAVORITE || $this->get_c == 's') { $url_state['params']['state'] = $this->state & ~FreshRSS_Entry::STATE_FAVORITE; $checked = 'true'; $class = 'active'; |
