diff options
author | Marc Alexander <admin@m-a-styles.de> | 2016-07-16 21:24:33 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2016-07-16 21:24:33 +0200 |
commit | b54aa81cdd4e55daf9537c9dde93d4fc9d1396be (patch) | |
tree | de439209c16f31cc3e72b7ab0ac9a2ee42d75275 /phpBB/styles | |
parent | 6f109dd1ef2eb652521b93294d5ffda9f1608884 (diff) | |
parent | 6350798e9728469f51e8e94c161bc99ca8ff97dc (diff) | |
download | forums-b54aa81cdd4e55daf9537c9dde93d4fc9d1396be.tar forums-b54aa81cdd4e55daf9537c9dde93d4fc9d1396be.tar.gz forums-b54aa81cdd4e55daf9537c9dde93d4fc9d1396be.tar.bz2 forums-b54aa81cdd4e55daf9537c9dde93d4fc9d1396be.tar.xz forums-b54aa81cdd4e55daf9537c9dde93d4fc9d1396be.zip |
Merge pull request #4337 from Senky/ticket/14506
Add mcp_move_before template event
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/template/mcp_move.html | 4 | ||||
-rw-r--r-- | phpBB/styles/subsilver2/template/mcp_move.html | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/phpBB/styles/prosilver/template/mcp_move.html b/phpBB/styles/prosilver/template/mcp_move.html index d028fffeb4..45a9ae83bc 100644 --- a/phpBB/styles/prosilver/template/mcp_move.html +++ b/phpBB/styles/prosilver/template/mcp_move.html @@ -31,6 +31,8 @@ <!-- INCLUDE overall_header.html --> +<!-- EVENT mcp_move_before --> + <form id="confirm" action="{S_CONFIRM_ACTION}" method="post"> <div class="panel"> @@ -54,7 +56,7 @@ </fieldset> <fieldset class="submit-buttons"> - {S_HIDDEN_FIELDS}<input type="submit" name="confirm" value="{YES_VALUE}" class="button1" /> + {S_HIDDEN_FIELDS}<input type="submit" name="confirm" value="{YES_VALUE}" class="button1" /> <input type="submit" name="cancel" value="{L_NO}" class="button2" /> {S_FORM_TOKEN} </fieldset> diff --git a/phpBB/styles/subsilver2/template/mcp_move.html b/phpBB/styles/subsilver2/template/mcp_move.html index b8958187e6..429fee7e38 100644 --- a/phpBB/styles/subsilver2/template/mcp_move.html +++ b/phpBB/styles/subsilver2/template/mcp_move.html @@ -1,9 +1,11 @@ <!-- INCLUDE overall_header.html --> +<!-- EVENT mcp_move_before --> + <div id="pagecontent"> <form name="confirm" action="{S_CONFIRM_ACTION}" method="post"> - + <table class="tablebg" width="100%" cellspacing="1"> <tr> <th>{MESSAGE_TITLE}</th> @@ -32,9 +34,9 @@ </td> </tr> </table> - {S_FORM_TOKEN} + {S_FORM_TOKEN} </form> - + </div> <br clear="all" /> |