blob: 51051b98a36fc41eb8ffb3367dce8cfc3c75838e (
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 !== null) {
$this->renderHelper('configure/query');
}
|