diff options
| author | 2022-07-31 13:20:48 +0200 | |
|---|---|---|
| committer | 2022-07-31 13:20:48 +0200 | |
| commit | 5177a17c9fd4a92465b56f5486c233aa0b3504e2 (patch) | |
| tree | 7dc00999e8e8e9a85bb783dae2b2190175935fd7 /app/views/subscription | |
| parent | 18b8e91e3f29329d25d78fdf06376dee608936b3 (diff) | |
sidebar and subscription management (#4474)
Diffstat (limited to 'app/views/subscription')
| -rw-r--r-- | app/views/subscription/index.phtml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/subscription/index.phtml b/app/views/subscription/index.phtml index d2123a2ac..b546eea6d 100644 --- a/app/views/subscription/index.phtml +++ b/app/views/subscription/index.phtml @@ -49,11 +49,12 @@ $empty = $feed->nbEntries() == 0 ? ' empty' : ''; ?> <li class="item feed<?= $error, $empty, $feed->mute() ? ' mute' : '' ?>" + title="<?= $feed->inError() ? _t('sub.feed.error') : '' ?>" draggable="true" data-feed-id="<?= $feed->id() ?>"> <a class="configure open-slider" href="<?= _url('subscription', 'feed', 'id', $feed->id()) ?>"><?= _i('configure') ?></a> <?php if (FreshRSS_Context::$user_conf->show_favicons): ?><img class="favicon" src="<?= $feed->favicon() ?>" alt="✇" loading="lazy" /><?php endif; ?> - <?= $feed->name() ?> + <span class="item-title"><?= $feed->name() ?></span> </li> <?php } |
