diff options
| author | 2024-10-01 21:42:43 +0200 | |
|---|---|---|
| committer | 2024-10-01 21:42:43 +0200 | |
| commit | 2489b6259ad334407c023eb60722c9746d973542 (patch) | |
| tree | 00ca8d08522671e6a3400a7fa422586058746e82 /app | |
| parent | 03f2f7f4a8b224dc24ff4ab4aad73ed5008f08bb (diff) | |
fix regression user query page (#6859)
Diffstat (limited to 'app')
| -rw-r--r-- | app/views/stats/idle.phtml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/stats/idle.phtml b/app/views/stats/idle.phtml index c5f9a1e6b..0c3ebc38f 100644 --- a/app/views/stats/idle.phtml +++ b/app/views/stats/idle.phtml @@ -43,9 +43,9 @@ $mute_class = ($feed !== null && $feed->mute()) ? ' mute' : ''; ?> <li class="item feed<?= $error_class, $empty_class, $mute_class ?>" title="<?= $error_title, $empty_title ?>"> - <a class="configure open-slider" href="<?= _url('stats', 'feed', 'id', $feedInPeriod['id'], 'sub', 'idle') ?>" title="<?= _t('gen.action.manage') ?>"><?= _i('configure') ?></a> - <?php if (FreshRSS_Context::userConf()->show_favicons): ?><img class="favicon" src="<?= $feedInPeriod['favicon'] ?>" alt="✇" loading="lazy" /><?php endif; ?> - <span title="<?= timestamptodate((int)($feedInPeriod['last_date']), false) ?>"><?= $feedInPeriod['name'] ?> + <a class="configure open-slider" href="<?= _url('stats', 'feed', 'id', $feedInPeriod['id'], 'sub', 'idle') ?>" title="<?= _t('gen.action.manage') ?>"><?= _i('configure') ?></a><?php + if (FreshRSS_Context::userConf()->show_favicons): ?><img class="favicon" src="<?= $feedInPeriod['favicon'] ?>" alt="✇" loading="lazy" /><?php + endif; ?><span title="<?= timestamptodate((int)($feedInPeriod['last_date']), false) ?>"><?= $feedInPeriod['name'] ?> (<?= _t('admin.stats.number_entries', $feedInPeriod['nb_articles']) ?>)</span> </li> <?php } ?> |
