Hi peeps
I have this plugin an i am wondering, where do i edit the usergroups in it?
Code:
eval('$canseelinks = in_array($this->registry->userinfo[usergroupid], array(' . $this->registry->options['canseelinks'] . '));');
eval('$canshowlinks = in_array($post[usergroupid], array(' . $this->registry->options['canshowlinks'] . '));');
if ((!in_array($this->registry->userinfo[usergroupid], array($canseelinks)) and !in_array($post[usergroupid], array($canshowlinks))) or !is_member_of($post, explode(',', $this->registry->options['canseelinks'])))
{
$this->post['message'] = preg_replace("!<a[^>]*>(.*)</a>!siU", $vbphrase[nolink], $this->post['message']);
}