diff options
| author | 2022-11-03 22:36:13 +0100 | |
|---|---|---|
| committer | 2022-11-03 22:36:13 +0100 | |
| commit | ca6c9345b2932b1f955d9d037fa6ed136e84bdc6 (patch) | |
| tree | 360c2284deb60a82f12201dd046a31bbd9ae38b8 /app/views | |
| parent | b1f946367359fb1f69ec8687bebcb5f12339f985 (diff) | |
fix: dyn. OPML icon (#4810)
* fix
Diffstat (limited to 'app/views')
| -rw-r--r-- | app/views/subscription/index.phtml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/views/subscription/index.phtml b/app/views/subscription/index.phtml index 76b6279b7..7ee7a3188 100644 --- a/app/views/subscription/index.phtml +++ b/app/views/subscription/index.phtml @@ -35,8 +35,7 @@ <div class="box"> <div class="box-title"> <a class="configure open-slider" href="<?= _url('subscription', 'category', 'id', $cat->id()) ?>" data-cat-position="<?= $cat->attributes('position') ?>"><?= _i('configure') ?></a> - <h2><?= $cat->name() ?></h2> - <?php if ($cat->kind() == FreshRSS_Category::KIND_DYNAMIC_OPML) { echo _i('opml-dyn'); } ?> + <h2><?= $cat->name() ?><?php if ($cat->kind() == FreshRSS_Category::KIND_DYNAMIC_OPML) { echo " " . _i('opml-dyn'); } ?></h2> </div> <ul class="box-content drop-zone scrollbar-thin" dropzone="move" data-cat-id="<?= $cat->id() ?>"> <?php |
