Quote:
Originally Posted by pursuited
Great addon!
I have a question I am not too good on the php part, but what would I put in the form start to prevent users from filling the form out who does not have 200 posts?
Thank you!
|
Form Hook: Form Start:
PHP Code:
if($vbulletin->userinfo['posts'] < 200)
{
$errormessage = "You need 200 posts to use this form.";
eval('print_output("' . fetch_template('STANDARD_ERROR') . '");');
}