mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-21 15:52:03 -04:00
* Use typed access to request parameters This was a big source of mixed datatypes in many places * Fix notifications * Fix bookmarkAction
17 lines
353 B
PHTML
17 lines
353 B
PHTML
<?php /** @var FreshRSS_View $this */ ?>
|
|
<?php
|
|
|
|
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 } ?>
|