mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-02-13 06:51:20 -05:00
14 lines
240 B
PHTML
14 lines
240 B
PHTML
<?php
|
|
declare(strict_types=1);
|
|
/** @var FreshRSS_View $this */
|
|
$this->partial('aside_configure');
|
|
?>
|
|
<main class="post">
|
|
<h1><?= _t('admin.update') ?></h1>
|
|
|
|
<?php
|
|
// @phpstan-ignore function.notFound
|
|
ask_info_update();
|
|
?>
|
|
</main>
|