diff options
| author | 2025-09-11 21:19:31 +0200 | |
|---|---|---|
| committer | 2025-09-11 21:19:31 +0200 | |
| commit | 8bd9bd95d8cc0fd5fe24386db7182329612579da (patch) | |
| tree | 6e1278feccbc8725f218cc86e84b8961360b63f2 /app/views/helpers/category/update.phtml | |
| parent | c8da217e875c2371a8d1d13a678e2a811d906922 (diff) | |
Minor update syntax echo (#7941)
* Minor update syntax echo
Follow-up of https://github.com/FreshRSS/FreshRSS/pull/7939
* Fix layout
Whitespace optimisation needed to avoid style glitch
Diffstat (limited to 'app/views/helpers/category/update.phtml')
| -rw-r--r-- | app/views/helpers/category/update.phtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/helpers/category/update.phtml b/app/views/helpers/category/update.phtml index 069e5bcf9..5e5fb4f10 100644 --- a/app/views/helpers/category/update.phtml +++ b/app/views/helpers/category/update.phtml @@ -8,7 +8,7 @@ <div class="post"> <h2> <?= $this->category->name() ?> - <?php if ($this->category->kind() == FreshRSS_Category::KIND_DYNAMIC_OPML) { echo _i('opml-dyn'); } ?> + <?= $this->category->kind() === FreshRSS_Category::KIND_DYNAMIC_OPML ? _i('opml-dyn') : '' ?> </h2> <div> |
