diff options
| author | 2023-12-15 23:04:29 +0100 | |
|---|---|---|
| committer | 2023-12-15 23:04:29 +0100 | |
| commit | 6bb45a87268157aab961a6a4a728d9a9bbe043b0 (patch) | |
| tree | d1c36638d5ee61e2e663d214d724a71f07a89354 /app/views/category/update.phtml | |
| parent | a3ed8269132303eebc03d3e6df822f1f101fa95b (diff) | |
Add filter actions (auto mark read) at category and global levels (#5942)
* Add filter actions (auto mark read) at category level
fix https://github.com/FreshRSS/FreshRSS/issues/3497
* Add filter actions (auto mark read) at global level
fix https://github.com/FreshRSS/FreshRSS/issues/2788
* Fix feed category ID
* Minor comment
Diffstat (limited to 'app/views/category/update.phtml')
| -rw-r--r-- | app/views/category/update.phtml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/views/category/update.phtml b/app/views/category/update.phtml new file mode 100644 index 000000000..daf4523bb --- /dev/null +++ b/app/views/category/update.phtml @@ -0,0 +1,10 @@ +<?php +declare(strict_types=1); +/** @var FreshRSS_View $this */ + +if (!Minz_Request::paramBoolean('ajax')) { + $this->partial('aside_subscription'); +} +if ($this->category) { + $this->renderHelper('category/update'); +} |
