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/subscription/index.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/subscription/index.phtml')
| -rw-r--r-- | app/views/subscription/index.phtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/subscription/index.phtml b/app/views/subscription/index.phtml index e1ec221f0..b2cff7ac7 100644 --- a/app/views/subscription/index.phtml +++ b/app/views/subscription/index.phtml @@ -31,7 +31,7 @@ <div class="box"> <div class="box-title"> <a class="configure open-slider" href="<?= _url('category', 'update', 'id', $cat->id()) ?>" title="<?= _t('gen.action.manage') ?>" data-cat-position="<?= $cat->attributeString('position') ?>"><?= _i('configure') ?></a> - <h2><?= $cat->name() ?><?php if ($cat->kind() === FreshRSS_Category::KIND_DYNAMIC_OPML) { echo " " . _i('opml-dyn'); } ?></h2> + <h2><?= $cat->name() ?><?= $cat->kind() === FreshRSS_Category::KIND_DYNAMIC_OPML ? ' ' . _i('opml-dyn') : '' ?></h2> </div> <ul class="box-content drop-zone scrollbar-thin" dropzone="move" data-cat-id="<?= $cat->id() ?>"> <?php |
