mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-22 00:02:45 -04:00
* Fix slider titles And fix full-page view of category configuration. FIx https://github.com/FreshRSS/FreshRSS/pull/5449#issuecomment-1590021947 * Fix user queries and user management Implement https://github.com/FreshRSS/FreshRSS/pull/5469#issuecomment-1591957935
17 lines
344 B
PHTML
17 lines
344 B
PHTML
<?php
|
|
/** @var FreshRSS_View $this */
|
|
|
|
if (!Minz_Request::paramBoolean('ajax')) {
|
|
$this->partial('aside_subscription');
|
|
}
|
|
|
|
if ($this->feed) {
|
|
$this->renderHelper('feed/update');
|
|
} else {
|
|
?>
|
|
<div class="alert alert-warn">
|
|
<span class="alert-head"><?= _t('sub.feed.no_selected') ?></span>
|
|
<?= _t('sub.feed.think_to_add') ?>
|
|
</div>
|
|
<?php } ?>
|