diff options
| author | 2023-06-15 12:47:47 +0200 | |
|---|---|---|
| committer | 2023-06-15 12:47:47 +0200 | |
| commit | 228d7adfdb90c3fdd179f80fbfde565eb06e0cec (patch) | |
| tree | 449368813c0ee49e50db55a560dee6e4ffc9cca5 /app/views | |
| parent | 644427b9b1a0cf525b84f4a2aac2d6a5a2f55045 (diff) | |
Fix slider views (#5469)
* Fix slider titles
And fix full-page view of category configuration.
FIx https://github.com/FreshRSS/FreshRSS/pull/5449#issuecomment-1590021947
* Fix user queries and user management
Implement https://github.com/FreshRSS/FreshRSS/pull/5469#issuecomment-1591957935
Diffstat (limited to 'app/views')
| -rw-r--r-- | app/views/configure/query.phtml | 5 | ||||
| -rw-r--r-- | app/views/subscription/category.phtml | 6 | ||||
| -rw-r--r-- | app/views/subscription/feed.phtml | 2 | ||||
| -rw-r--r-- | app/views/user/details.phtml | 3 |
4 files changed, 13 insertions, 3 deletions
diff --git a/app/views/configure/query.phtml b/app/views/configure/query.phtml index 316583bac..9284ae94e 100644 --- a/app/views/configure/query.phtml +++ b/app/views/configure/query.phtml @@ -1,6 +1,9 @@ -<?php /** @var FreshRSS_View $this */ ?> <?php +/** @var FreshRSS_View $this */ +if (!Minz_Request::paramBoolean('ajax')) { + $this->partial('aside_configure'); +} if ($this->query) { $this->renderHelper('configure/query'); } diff --git a/app/views/subscription/category.phtml b/app/views/subscription/category.phtml index 90de4e11b..0b63ebc17 100644 --- a/app/views/subscription/category.phtml +++ b/app/views/subscription/category.phtml @@ -1,5 +1,9 @@ -<?php /** @var FreshRSS_View $this */ ?> <?php +/** @var FreshRSS_View $this */ + +if (!Minz_Request::paramBoolean('ajax')) { + $this->partial('aside_subscription'); +} if ($this->category) { $this->renderHelper('category/update'); } diff --git a/app/views/subscription/feed.phtml b/app/views/subscription/feed.phtml index c93b7fc58..e361cff39 100644 --- a/app/views/subscription/feed.phtml +++ b/app/views/subscription/feed.phtml @@ -1,5 +1,5 @@ -<?php /** @var FreshRSS_View $this */ ?> <?php +/** @var FreshRSS_View $this */ if (!Minz_Request::paramBoolean('ajax')) { $this->partial('aside_subscription'); diff --git a/app/views/user/details.phtml b/app/views/user/details.phtml index 3387584eb..a2a560a65 100644 --- a/app/views/user/details.phtml +++ b/app/views/user/details.phtml @@ -1,5 +1,8 @@ <?php /** @var FreshRSS_View $this */ + if (!Minz_Request::paramBoolean('ajax')) { + $this->partial('aside_configure'); + } ?> <?php $isDefault = $this->details['is_default']; ?> |
