gotcha. you would need to find out what that fields name is called. Im guessing
organization maybe.
In register.php file in the root directory you can hard code it.
if ($_POST['do'] == 'addmember')
find that. You can add the organization to the cleanarray as well.
if($vbulletin->GPC['username'] == $vbulletin->GPC['organization'])
{
eval(standard_error(fetch_error('noregister')));
}
you can use that error, its tells them there is no registration. Or make a new phrase in the error category and call that. you can add that sometime after the cleanarray.
to add organization just add
'organization' => TYPE_STR,
to the end
|