aboutsummaryrefslogtreecommitdiff
path: root/app/views/extension
diff options
context:
space:
mode:
authorGravatar maTh <math-home@web.de> 2021-07-11 14:58:41 +0200
committerGravatar GitHub <noreply@github.com> 2021-07-11 14:58:41 +0200
commit3ed9d00f0a782a948234e33a6f2060acf9362c14 (patch)
tree02f444e23b0211e4ae179fd4b42c3875755941c4 /app/views/extension
parentdff31cf55712758dd49ba333399dbc3478321f73 (diff)
changed <h2> to <legend> (#3676)
* changed <h2> to <legend> * white spaces replaced to tabs Thanks for the review * fixed shortcut.phtml headline legend -> h2 * fixed bookmarklet.phtml headline legend -> h2
Diffstat (limited to 'app/views/extension')
-rw-r--r--app/views/extension/index.phtml8
1 files changed, 2 insertions, 6 deletions
diff --git a/app/views/extension/index.phtml b/app/views/extension/index.phtml
index bb163c8ee..f3e75cfcc 100644
--- a/app/views/extension/index.phtml
+++ b/app/views/extension/index.phtml
@@ -4,12 +4,10 @@
<a href="<?= _url('index', 'index') ?>"><?= _t('gen.action.back_to_rss_feeds') ?></a>
<h1><?= _t('admin.extensions.title') ?></h1>
-
+ <h2><?= _t('admin.extensions.system') ?></h2>
<form id="form-extension" method="post">
<input type="hidden" name="_csrf" value="<?= FreshRSS_Auth::csrfToken() ?>" />
- <?php if (!empty($this->extension_list['system'])) { ?>
- <h2><?= _t('admin.extensions.system') ?></h2>
- <?php
+ <?php if (!empty($this->extension_list['system'])) {
foreach ($this->extension_list['system'] as $ext) {
$this->ext_details = $ext;
$this->renderHelper('extension/details');
@@ -24,8 +22,6 @@
$this->ext_details = $ext;
$this->renderHelper('extension/details');
}
- ?>
- <?php
}
if (empty($this->extension_list['system']) && empty($this->extension_list['user'])) {