Hmm, I'm having a little problem with this.
When I enable the plugin and try to write a new reply I get the following error:
Code:
Fatal error: Using $this when not in object context in /home/ftpusers/otfans/html/newreply.php(809) : eval()'d code on line 6
Which should be in this code:
Code:
eval('$canseelinks = in_array($vbulletin->userinfo[usergroupid], array(' . $vbulletin->options['canseelinks'] . '));');
if ((!in_array($vbulletin->userinfo[usergroupid], array($canseelinks)) or !is_member_of($post, explode(',', $this->registry->options['canseelinks']))))
{
$reviewmessage = preg_replace("!<a[^>]*>(.*)</a>!siU", $vbphrase[nolink], $reviewmessage);
}
Could anyone explain me how to fix that please?