My member complained of the below error:
Quote:
: ok i really have no idea how to explain it, cuz im not sure of lyrics or anything. i heard it on the radio a few times and i like it alot.
i think it goes like this
"ah yea ah yea, im a not forget, all that you've done for me, all that you've done for me..."
btw who has heard "My Savior, My God"? by Aaron Shust. I absolutely love that song!"
it gave me this error...
"You are only allowed to post URLs to other sites after you have made 50 posts or more and received permission from the Administrator."
|
My plugin "forbid links for users with fewer than 50 posts.." shows this:
Code:
global $vbulletin;
$pagetext =& $this->fetch_field('pagetext', 'post');
if (($vbulletin->userinfo[posts] < 50) and (stristr($pagetext,'[url') or stristr($pagetext,'[URL') or stristr($pagetext,'www.') or
stristr($pagetext,'http://')))
{
//eval(standard_error(fetch_error('error_nourlallowed')));
$this->error('error_nourlallowed');
$return_value = false;
}