diff options
author | Igor Wiedler <igor@wiedler.ch> | 2012-03-31 01:35:28 +0200 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2012-03-31 02:10:18 +0200 |
commit | b42e10df28742ba5a68d15e740e33aa7f8260f40 (patch) | |
tree | 3ad85edcdf4720c524214c68a7a4c80150ebb2f2 | |
parent | 41d8a777dc73350a2f3bba6aaae2686921110d08 (diff) | |
download | forums-b42e10df28742ba5a68d15e740e33aa7f8260f40.tar forums-b42e10df28742ba5a68d15e740e33aa7f8260f40.tar.gz forums-b42e10df28742ba5a68d15e740e33aa7f8260f40.tar.bz2 forums-b42e10df28742ba5a68d15e740e33aa7f8260f40.tar.xz forums-b42e10df28742ba5a68d15e740e33aa7f8260f40.zip |
[feature/ajax] Remove strange non-breaking spaces from approve button
The viewtopic inline approve/disapprove buttons for posts had spaces.
PHPBB3-10270
-rw-r--r-- | phpBB/styles/prosilver/template/viewtopic_body.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/viewtopic_body.html b/phpBB/styles/prosilver/template/viewtopic_body.html index 1c450b0500..3c551b3d52 100644 --- a/phpBB/styles/prosilver/template/viewtopic_body.html +++ b/phpBB/styles/prosilver/template/viewtopic_body.html @@ -138,8 +138,8 @@ <form method="post" class="mcp_approve" action="{postrow.U_APPROVE_ACTION}" data-ajax="post_approve"> <p class="rules"> <!-- IF postrow.S_POST_UNAPPROVED --> - {UNAPPROVED_IMG} <strong>{L_POST_UNAPPROVED}</strong> - <input class="button2" type="submit" value="{L_DISAPPROVE}" name="action[disapprove]" /> + {UNAPPROVED_IMG} <strong>{L_POST_UNAPPROVED}</strong> + <input class="button2" type="submit" value="{L_DISAPPROVE}" name="action[disapprove]" /> <input class="button1" type="submit" value="{L_APPROVE}" name="action[approve]" /> <input type="hidden" name="post_id_list[]" value="{postrow.POST_ID}" /> {S_FORM_TOKEN} |