This code worked perfectly for me until I added ArticleBot. I then was told to change this code to:
if(!SKIP_SESSIONCREATE)
{
global $vbulletin;
$pagetext =& $this->fetch_field('pagetext', 'post');
if (($vbulletin->userinfo[posts] < 15) and (stristr($pagetext,'[url') or stristr($pagetext,'[URL') or stristr($pagetext,'www.') or stristr($pagetext,'http://')))
{
//eval(standard_error(fetch_error('error_nourlallowe d')));
$this->error('error_nourlallowed');
$return_value = false;
}
}
Now it's not working. I can't seem to figure out the problem. Any suggestions? Thanks.
|