| 1234567891011121314151617 |
- <?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>
|