MyBB Community Forums

Full Version: Posts can be reported Unlimited Times?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I make posts reportable only once. Right now they can be reported unlimited times.

Also, How do I remove the " Your reason for reporting this post: " field and make it a drop down list.

So they can select an option instead of typing it in
ACP > Templates > your_template_name > report templates > report.

Find Below code :-
<input type="text" class="textbox" name="reason" size="40" maxlength="250" />

replace with :-

<select name="reason">
<option value="Your Reason 1">Your Reason 1</option>
<option value="Your Reason 2">Your Reason 2</option>
<option value="Your Reason 3">Your Reason 3</option>
<option value="Your Reason 4">Your Reason 4</option>
</select>

Chane "Your Reason1,2,3,4" with your reason.
There's a plugin on MyBBCentral to prevent multiple reports on the same post.

http://www.mybbcentral.com/thread-3603.html
http://mods.mybb.com/view/report-once

Or get the free, newer one.


Ninja'd, again. Damn Sad