diff options
| author | 2016-07-31 18:25:02 +0200 | |
|---|---|---|
| committer | 2016-07-31 18:25:02 +0200 | |
| commit | 93f7f849874dcdf1263370ff08c72a962f8de56f (patch) | |
| tree | 50c0bc54eebd1c446e96f2d831317a2a83c48e3f /app/views | |
| parent | df27e435f26df5e4e31dd34b334b2d1e27297158 (diff) | |
Restaure compatibility with Internet Explorer 11 / Edge
https://github.com/FreshRSS/FreshRSS/issues/772
Diffstat (limited to 'app/views')
| -rw-r--r-- | app/views/extension/index.phtml | 3 | ||||
| -rwxr-xr-x | app/views/helpers/pagination.phtml | 4 | ||||
| -rw-r--r-- | app/views/stats/idle.phtml | 4 |
3 files changed, 6 insertions, 5 deletions
diff --git a/app/views/extension/index.phtml b/app/views/extension/index.phtml index 4b0d5ebeb..b26334937 100644 --- a/app/views/extension/index.phtml +++ b/app/views/extension/index.phtml @@ -5,7 +5,7 @@ <h1><?php echo _t('admin.extensions.title'); ?></h1> - <form id="form-extension" method="post" aria-hidden="true"></form> + <form id="form-extension" method="post"> <?php if (!empty($this->extension_list['system'])) { ?> <h2><?php echo _t('admin.extensions.system'); ?></h2> <?php @@ -31,6 +31,7 @@ ?> <p class="alert alert-warn"><?php echo _t('admin.extensions.empty_list'); ?></p> <?php } ?> + </form> </div> <?php $class = isset($this->extension) ? ' class="active"' : ''; ?> diff --git a/app/views/helpers/pagination.phtml b/app/views/helpers/pagination.phtml index 7eca8c525..d1c3cc72c 100755 --- a/app/views/helpers/pagination.phtml +++ b/app/views/helpers/pagination.phtml @@ -14,8 +14,7 @@ ); ?> -<form id="mark-read-pagination" method="post" aria-hidden="true"></form> - +<form id="mark-read-pagination" method="post"> <ul class="pagination"> <li class="item pager-next"> <?php if (FreshRSS_Context::$next_id) { ?> @@ -39,3 +38,4 @@ <?php } ?> </li> </ul> +</form> diff --git a/app/views/stats/idle.phtml b/app/views/stats/idle.phtml index ba88b679f..8c5f182c2 100644 --- a/app/views/stats/idle.phtml +++ b/app/views/stats/idle.phtml @@ -18,8 +18,7 @@ <div class="stat"> <h2><?php echo _t('gen.date.' . $period); ?></h2> - <form id="form-delete" method="post" aria-hidden="true"></form> - + <form id="form-delete" method="post"> <?php foreach ($feeds as $feed) { ?> <ul class="horizontal-list"> <li class="item"> @@ -34,6 +33,7 @@ </li> </ul> <?php } ?> + </form> </div> <?php } |
