diff options
author | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2003-08-27 20:35:35 +0000 |
---|---|---|
committer | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2003-08-27 20:35:35 +0000 |
commit | dd2468ac1c4d01f8a9b634a08bdb5e420abbc6d5 (patch) | |
tree | 17d597da729c37df9667d83af59bab1dc4f56acf /phpBB | |
parent | 3990cefcc07a22936e67cc1b3e9a3d9446a19462 (diff) | |
download | forums-dd2468ac1c4d01f8a9b634a08bdb5e420abbc6d5.tar forums-dd2468ac1c4d01f8a9b634a08bdb5e420abbc6d5.tar.gz forums-dd2468ac1c4d01f8a9b634a08bdb5e420abbc6d5.tar.bz2 forums-dd2468ac1c4d01f8a9b634a08bdb5e420abbc6d5.tar.xz forums-dd2468ac1c4d01f8a9b634a08bdb5e420abbc6d5.zip |
Changed: Allow multiple reports. If one tries to report the same post twice, it will silently update the existing report.
git-svn-id: file:///svn/phpbb/trunk@4444 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/language/en/lang_main.php | 3 | ||||
-rw-r--r-- | phpBB/styles/subSilver/template/report_body.html | 2 | ||||
-rw-r--r-- | phpBB/styles/subSilver/template/viewtopic_body.html | 2 |
3 files changed, 2 insertions, 5 deletions
diff --git a/phpBB/language/en/lang_main.php b/phpBB/language/en/lang_main.php index 7e0414ea3b..c6a3037865 100644 --- a/phpBB/language/en/lang_main.php +++ b/phpBB/language/en/lang_main.php @@ -1340,8 +1340,7 @@ $lang += array( 'REPORT_NOTIFY_EXPLAIN' => 'Informs you when your report is dealt with', 'POST_REPORTED_SUCCESS' => 'This post has been successfully reported', - 'ALREADY_REPORTED' => 'You have already reported this post', - 'EDIT_REPORT' => 'Click %sHere%s to edit your report', + 'ALREADY_REPORTED' => 'This post has already been reported', 'report_reasons' => array( 'TITLE' => array( diff --git a/phpBB/styles/subSilver/template/report_body.html b/phpBB/styles/subSilver/template/report_body.html index dd6d72bf89..701344654b 100644 --- a/phpBB/styles/subSilver/template/report_body.html +++ b/phpBB/styles/subSilver/template/report_body.html @@ -20,7 +20,7 @@ <!-- IF S_CAN_NOTIFY --> <tr> <td class="row1"><span class="gen"><b>{L_REPORT_NOTIFY}:</b></span><br /><span class="gensmall">{L_REPORT_NOTIFY_EXPLAIN}</span></td> - <td class="row2"><span class="gen"><input type="radio" name="notify" value="1" />{L_YES} <input type="radio" name="notify" value="0" checked="checked" />{L_NO}</span></td> + <td class="row2"><span class="gen"><input type="radio" name="notify" value="1" <!-- IF S_NOTIFY -->checked="checked" <!-- ENDIF -->/>{L_YES} <input type="radio" name="notify" value="0" <!-- IF not S_NOTIFY -->checked="checked" <!-- ENDIF -->/>{L_NO}</span></td> </tr> <!-- ENDIF --> <tr> diff --git a/phpBB/styles/subSilver/template/viewtopic_body.html b/phpBB/styles/subSilver/template/viewtopic_body.html index 6c80eddcc2..87ca210b5a 100644 --- a/phpBB/styles/subSilver/template/viewtopic_body.html +++ b/phpBB/styles/subSilver/template/viewtopic_body.html @@ -186,11 +186,9 @@ <td width="100%"> </td> <td width="10" nowrap="nowrap"><a href="{postrow.U_MINI_POST}">{postrow.MINI_POST_IMG}</a></td> <td class="gensmall" nowrap="nowrap"><b>{L_POSTED}:</b> {postrow.POST_DATE}</td> - <!-- IF not postrow.S_POST_REPORTED --> <!-- IF postrow.U_REPORT --> <td> <a href="{postrow.U_REPORT}">{REPORT_IMG}</a></td> <!-- ENDIF --> - <!-- ENDIF --> </tr> </table></td> </tr> |