Hide form replay page (#576)

This commit is contained in:
Clément Oudot 2013-01-10 13:02:30 +00:00
parent 60774cd9ca
commit 72c2b18f0d

View File

@ -1429,7 +1429,7 @@ sub buildPostForm {
my $r = shift;
$r->content_type('text/html; charset=UTF-8');
$r->print(
qq{<html><body onload="document.getElementById('f').submit()"><form id="f" method="post" action="$url"><input type=hidden name="a" value="}
qq{<html><body onload="document.getElementById('f').submit()"><form id="f" method="post" action="$url" style="visibility:hidden"><input type=hidden name="a" value="}
. sprintf( "%0" . $count . "d", 1 )
. qq{"/><input type="submit" value="Ok"/></form></body></html>}
);