diff options
author | Dhruv <dhruv.goel92@gmail.com> | 2013-06-23 21:47:42 +0530 |
---|---|---|
committer | Dhruv <dhruv.goel92@gmail.com> | 2013-07-01 21:49:05 +0530 |
commit | ea8a4abe66b7142fd8b16dc9732bac181031875a (patch) | |
tree | 794fbe8653eb119723ec1d51026491b2c157538e /phpBB | |
parent | 4ad1d9aa6530ebe1d554909a978b9ee124377625 (diff) | |
download | forums-ea8a4abe66b7142fd8b16dc9732bac181031875a.tar forums-ea8a4abe66b7142fd8b16dc9732bac181031875a.tar.gz forums-ea8a4abe66b7142fd8b16dc9732bac181031875a.tar.bz2 forums-ea8a4abe66b7142fd8b16dc9732bac181031875a.tar.xz forums-ea8a4abe66b7142fd8b16dc9732bac181031875a.zip |
[ticket/11566] Add captcha to report post template in subsilver
PHPBB3-11566
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/styles/subsilver2/template/report_body.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/styles/subsilver2/template/report_body.html b/phpBB/styles/subsilver2/template/report_body.html index 7cd7d1040f..1653875799 100644 --- a/phpBB/styles/subsilver2/template/report_body.html +++ b/phpBB/styles/subsilver2/template/report_body.html @@ -3,6 +3,11 @@ <form method="post" id="report" action="{S_REPORT_ACTION}"> <table class="tablebg" width="100%" cellspacing="1"> +<!-- IF ERROR --> + <tr> + <td class="row3" colspan="2" align="center"><span class="gensmall error">{ERROR}</span></td> + </tr> +<!-- ENDIF --> <tr> <th colspan="2"><!-- IF S_REPORT_POST -->{L_REPORT_POST}<!-- ELSE -->{L_REPORT_MESSAGE}<!-- ENDIF --></th> </tr> @@ -25,6 +30,9 @@ <td class="row1" valign="top"><span class="gen"><b>{L_MORE_INFO}:</b></span><br /><span class="gensmall">{L_CAN_LEAVE_BLANK}</span></td> <td class="row2"><textarea class="post" name="report_text" rows="10" cols="50">{REPORT_TEXT}</textarea></td> </tr> +<!-- IF CAPTCHA_TEMPLATE --> + <!-- INCLUDE {CAPTCHA_TEMPLATE} --> +<!-- ENDIF --> <tr> <td class="cat" colspan="2" align="center"><input type="submit" name="submit" class="btnmain" value="{L_SUBMIT}" /> <input type="submit" name="cancel" class="btnlite" value="{L_CANCEL}" /></td> </tr> |