aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/style/confirm_body.html
diff options
context:
space:
mode:
authormarc1706 <admin@m-a-styles.de>2013-04-28 22:54:48 +0200
committermarc1706 <admin@m-a-styles.de>2013-04-28 22:54:48 +0200
commitcb13add269b78e1a9ac84a80c78557bb7695df09 (patch)
tree0a195070f2ea55c462a157753857d543c5980d2b /phpBB/adm/style/confirm_body.html
parentc182ab0e7b2739ff70fb18611af5e1baa02d81a2 (diff)
downloadforums-cb13add269b78e1a9ac84a80c78557bb7695df09.tar
forums-cb13add269b78e1a9ac84a80c78557bb7695df09.tar.gz
forums-cb13add269b78e1a9ac84a80c78557bb7695df09.tar.bz2
forums-cb13add269b78e1a9ac84a80c78557bb7695df09.tar.xz
forums-cb13add269b78e1a9ac84a80c78557bb7695df09.zip
[ticket/11442] Use correct button class for ajaxified confirm_box
In commit 001572f the HTML code for the ajaxified confirm_box was moved from overall_footer.html to confirm_body.html. While copying, the CSS class of the "Yes" button was changed from button1 to button2. Due to the fact that the phpbb.confirm() method uses the class button1 to check if "Yes" was clicked, this broke the ajaxified confirm box in the ACP. With this small patch the confirm boxes in the ACP should work properly again. PHPBB3-11442
Diffstat (limited to 'phpBB/adm/style/confirm_body.html')
-rw-r--r--phpBB/adm/style/confirm_body.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/adm/style/confirm_body.html b/phpBB/adm/style/confirm_body.html
index d0360d1b3a..fa3f1e6c64 100644
--- a/phpBB/adm/style/confirm_body.html
+++ b/phpBB/adm/style/confirm_body.html
@@ -4,7 +4,7 @@
<p>{MESSAGE_TEXT}</p>
<fieldset class="submit-buttons">
- <input type="button" name="confirm" value="{L_YES}" class="button2" />&nbsp;
+ <input type="button" name="confirm" value="{L_YES}" class="button1" />&nbsp;
<input type="button" name="cancel" value="{L_NO}" class="button2" />
</fieldset>