aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/prosilver/template/mcp_post.html
diff options
context:
space:
mode:
authorCallum Macrae <callumacrae95@gmail.com>2011-02-24 19:54:47 +0000
committerCallum Macrae <callumacrae95@gmail.com>2011-02-24 20:06:34 +0000
commite4497f4a1506c98ea94d3f1382b7d4d472ff9e80 (patch)
treeaee9e486a936d551eedbf3d6d56ae4f955e1138f /phpBB/styles/prosilver/template/mcp_post.html
parent5e2bbdb22b82102c9bb2a1f040ad2755e545941e (diff)
downloadforums-e4497f4a1506c98ea94d3f1382b7d4d472ff9e80.tar
forums-e4497f4a1506c98ea94d3f1382b7d4d472ff9e80.tar.gz
forums-e4497f4a1506c98ea94d3f1382b7d4d472ff9e80.tar.bz2
forums-e4497f4a1506c98ea94d3f1382b7d4d472ff9e80.tar.xz
forums-e4497f4a1506c98ea94d3f1382b7d4d472ff9e80.zip
[ticket/9997] Fixed an inconsistency in the Moderator Control Panel
The order of the Approve / Disapprove buttons was inconsistent in the Moderator Control Panel - while on the main page and the moderation queue itself the Approve button was to the right of the Disapprove button, in the post details the Approve button was to the left of the Disapprove button. This very simple edit simply switches the position of these two buttons in the post details page in the mcp. PHPBB3-9995
Diffstat (limited to 'phpBB/styles/prosilver/template/mcp_post.html')
-rw-r--r--phpBB/styles/prosilver/template/mcp_post.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/mcp_post.html b/phpBB/styles/prosilver/template/mcp_post.html
index 04e24cd1f9..9d4997e576 100644
--- a/phpBB/styles/prosilver/template/mcp_post.html
+++ b/phpBB/styles/prosilver/template/mcp_post.html
@@ -72,8 +72,8 @@
<form method="post" id="mcp_approve" action="{U_APPROVE_ACTION}">
<p class="rules">
- <input class="button1" type="submit" value="{L_APPROVE}" name="action[approve]" /> &nbsp;
- <input class="button2" type="submit" value="{L_DISAPPROVE}" name="action[disapprove]" />
+ <input class="button2" type="submit" value="{L_DISAPPROVE}" name="action[disapprove]" /> &nbsp;
+ <input class="button1" type="submit" value="{L_APPROVE}" name="action[approve]" />
<input type="hidden" name="post_id_list[]" value="{POST_ID}" />
{S_FORM_TOKEN}
</p>