update.phtml 276 B

123456789101112
  1. <?php
  2. declare(strict_types=1);
  3. /** @var FreshRSS_View $this */
  4. if (!Minz_Request::paramBoolean('ajax')) {
  5. $this->partial('aside_subscription');
  6. }
  7. if ($this->tag === null) {
  8. throw new FreshRSS_Context_Exception('Tag not initialised!');
  9. }
  10. $this->renderHelper('tag/update');