if i don't check 'agree' in the pre-application form it printed a blank page... it's needed to subst in modapp.php
PHP Code:
if ($do == "apply" AND !$vbulletin->GPC['agree'])
{
standard_error(fetch_error('mas_mustagree', true, true));
}
with
PHP Code:
if ($vbulletin->GPC['do'] == "apply" AND !$vbulletin->GPC['agree'])
{
standard_error(fetch_error('mas_mustagree', true, true));
}
and that's all