mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-20 15:22:41 -04:00
* PHPStan 1.11 + minor update dev dependencies https://github.com/phpstan/phpstan/releases/tag/1.11.0 * Comment style
18 lines
388 B
PHTML
18 lines
388 B
PHTML
<?php
|
|
declare(strict_types=1);
|
|
/** @var FreshRSS_View $this */
|
|
$this->partial('aside_configure');
|
|
?>
|
|
<main class="post">
|
|
<div class="link-back-wrapper">
|
|
<a class="link-back" href="<?= _url('index', 'index') ?>"><?= _t('gen.action.back_to_rss_feeds') ?></a>
|
|
</div>
|
|
|
|
<h1><?= _t('admin.update') ?></h1>
|
|
|
|
<?php
|
|
// @phpstan-ignore function.notFound
|
|
ask_info_update();
|
|
?>
|
|
</main>
|