diff options
author | Cesar G <prototech91@gmail.com> | 2013-11-08 06:13:55 -0800 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2013-11-08 06:13:55 -0800 |
commit | 253f8d75934492a460a9e38cb948f792e01096f5 (patch) | |
tree | 2c57c3502f0fdd4f8cbd416d25d2f5603bd67661 /phpBB/styles/prosilver/template/confirm_body.html | |
parent | 082a467cc8813b63bde604a3e08485d01c228acb (diff) | |
download | forums-253f8d75934492a460a9e38cb948f792e01096f5.tar forums-253f8d75934492a460a9e38cb948f792e01096f5.tar.gz forums-253f8d75934492a460a9e38cb948f792e01096f5.tar.bz2 forums-253f8d75934492a460a9e38cb948f792e01096f5.tar.xz forums-253f8d75934492a460a9e38cb948f792e01096f5.zip |
[ticket/12001] Ensure that form data is sent to server in AJAX requests.
PHPBB3-12001
Diffstat (limited to 'phpBB/styles/prosilver/template/confirm_body.html')
-rw-r--r-- | phpBB/styles/prosilver/template/confirm_body.html | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/phpBB/styles/prosilver/template/confirm_body.html b/phpBB/styles/prosilver/template/confirm_body.html index bf575c20fa..a0428025cf 100644 --- a/phpBB/styles/prosilver/template/confirm_body.html +++ b/phpBB/styles/prosilver/template/confirm_body.html @@ -1,12 +1,13 @@ <!-- IF S_AJAX_REQUEST --> - - <h3>{MESSAGE_TITLE}</h3> - <p>{MESSAGE_TEXT}</p> - - <fieldset class="submit-buttons"> - <input type="button" name="confirm" value="{L_YES}" class="button2" /> - <input type="button" name="cancel" value="{L_NO}" class="button2" /> - </fieldset> + <form action="{S_CONFIRM_ACTION}" method="post"> + <h3>{MESSAGE_TITLE}</h3> + <p>{MESSAGE_TEXT}</p> + + <fieldset class="submit-buttons"> + <input type="button" name="confirm" value="{L_YES}" class="button2" /> + <input type="button" name="cancel" value="{L_NO}" class="button2" /> + </fieldset> + </form> <!-- ELSE --> |