mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-02-14 07:21:07 -05:00
11 lines
217 B
PHTML
11 lines
217 B
PHTML
<?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');
|
|
}
|