Skip to content

Commit

Permalink
Restaure compatibility with Internet Explorer 11 / Edge
Browse files Browse the repository at this point in the history
  • Loading branch information
Alkarex committed Jul 31, 2016
1 parent df27e43 commit 93f7f84
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Nous sommes une communauté amicale.
* Recommandés : [iconv](http://php.net/iconv), [JSON](http://php.net/json), [mbstring](http://php.net/mbstring), [Zip](http://php.net/zip), [zlib](http://php.net/zlib)
* Inclus par défaut : [DOM](http://php.net/dom), [XML](http://php.net/xml)…
* MySQL 5.0.3+ (recommandé) ou SQLite 3.7.4+
* Un navigateur Web récent tel Firefox, Chrome, Opera, Safari. [Internet Explorer ne fonctionne plus, mais ce sera corrigé](https://github.com/FreshRSS/FreshRSS/issues/772).
* Un navigateur Web récent tel Firefox, Internet Explorer 11 / Edge, Chrome, Opera, Safari.
* Fonctionne aussi sur mobile
* L’entête HTTP `Referer` ne doit pas être désactivé pour pouvoir utiliser le formulaire de connexion

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ We are a friendly community.
* Recommended extensions: [iconv](http://php.net/iconv), [JSON](http://php.net/json), [mbstring](http://php.net/mbstring), [Zip](http://php.net/zip), [zlib](http://php.net/zlib)
* Enabled by default: [DOM](http://php.net/dom), [XML](http://php.net/xml)…
* MySQL 5.0.3+ (recommended) or SQLite 3.7.4+
* A recent browser like Firefox, Chrome, Opera, Safari. [Internet Explorer currently not supported, but support will come back](https://github.com/FreshRSS/FreshRSS/issues/772).
* A recent browser like Firefox, Internet Explorer 11 / Edge, Chrome, Opera, Safari.
* Works on mobile
* The browser HTTP `Referer` header must not be disabled when using the form login method

Expand Down
4 changes: 2 additions & 2 deletions app/layout/aside_feed.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@
<a href="<?php echo _url('index', 'about'); ?>"><?php echo _t('index.menu.about'); ?></a>
<?php } ?>

<form id="mark-read-aside" method="post" aria-hidden="true"></form>

<form id="mark-read-aside" method="post">
<ul class="tree">
<li class="tree-folder category all<?php echo FreshRSS_Context::isCurrentGet('a') ? ' active' : ''; ?>">
<div class="tree-folder-title">
Expand Down Expand Up @@ -69,6 +68,7 @@
}
?>
</ul>
</form>
</div>

<script id="feed_config_template" type="text/html">
Expand Down
4 changes: 2 additions & 2 deletions app/layout/nav_menu.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,8 @@
);
?>

<form id="mark-read-menu" method="post" aria-hidden="true"></form>

<div class="stick" id="nav_menu_read_all">
<form id="mark-read-menu" method="post">
<?php $confirm = FreshRSS_Context::$user_conf->reading_confirm ? 'confirm' : ''; ?>
<button class="read_all btn <?php echo $confirm; ?>"
form="mark-read-menu"
Expand Down Expand Up @@ -123,6 +122,7 @@
</li>
</ul>
</div>
</form>
</div>
<?php } ?>

Expand Down
3 changes: 2 additions & 1 deletion app/views/extension/index.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"' : ''; ?>
Expand Down
4 changes: 2 additions & 2 deletions app/views/helpers/pagination.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -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) { ?>
Expand All @@ -39,3 +38,4 @@
<?php } ?>
</li>
</ul>
</form>
4 changes: 2 additions & 2 deletions app/views/stats/idle.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand All @@ -34,6 +33,7 @@
</li>
</ul>
<?php } ?>
</form>
</div>
<?php
}
Expand Down

0 comments on commit 93f7f84

Please sign in to comment.