Revert use of "post" method for error page Reload button
Using post causes problems with some websites.
This commit is contained in:
parent
aa914bdc48
commit
e9a5857b31
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ description {
|
||||||
<h1>{title}</h1>
|
<h1>{title}</h1>
|
||||||
<p id="message">{message}</p>
|
<p id="message">{message}</p>
|
||||||
<p id="description">{description}</p>
|
<p id="description">{description}</p>
|
||||||
<form onsubmit="location.reload()" method="post">
|
<form onsubmit="location.reload()">
|
||||||
<button>
|
<button>
|
||||||
<img src="{stock}/gtk-refresh"/>
|
<img src="{stock}/gtk-refresh"/>
|
||||||
<span>{tryagain}</span>
|
<span>{tryagain}</span>
|
||||||
|
|
Loading…
Reference in a new issue