Quote:
Originally Posted by Wheezy
Is there a way for the message "This post has been reported" (as a non-link) to be displayed to registered users so that multiple users do not report the same post?
|
Open the plugin "Main Code" from this product and change this:
PHP Code:
if($this->post['reportthreadid'] AND can_moderate())
to this:
PHP Code:
if($this->post['reportthreadid'])
Then go to the template ereports_postbit and change this:
HTML Code:
<a href="$vboptions[bburl]/showthread.php?t=$post[reportthreadid]">$vbphrase[ereports_reported]</a>
to this:
HTML Code:
<if condition="can_moderate()">
<a href="$vboptions[bburl]/showthread.php?t=$post[reportthreadid]">$vbphrase[ereports_reported]</a>
<else />
$vbphrase[ereports_reported]
</if>