blob: e45820fbc8ca40d6b5b21481d4d25a5125c8a96f (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
declare(strict_types=1);
/** @var FreshRSS_View $this */
if (!Minz_Request::paramBoolean('ajax')) {
$this->partial('aside_configure');
}
if ($this->query) {
$this->renderHelper('configure/query');
}
|