Quote:
Originally Posted by AdemGEN? A problem
1. step
Register, click
2. step
I have read, and agree to abide by the Forum rules: Check box, OK
3. step
Email Address
Enter and Go
4. step
Close page
After
Email message inbox
Click link active
Results

|
Quote:
Originally Posted by sentinal
to fix this problem is very simple
goto vb folder and edit the
register.php file
search for
Code:
$vbulletin->input->clean_array_gpc('p', array(
and replace it with
Code:
$vbulletin->input->clean_array_gpc('r', array(
you will find it at line 532
or you can upload the register.php file 3.6.8 ver
|
>>>>>>>>>>>>>>>>>>>>>>>>>>
to fix this problem is very simple
goto vb folder and edit the
register.php file
search for
Code:
if ($_REQUEST['do'] == 'register')
{
$vbulletin->input->clean_array_gpc('p', array(
'agree' => TYPE_BOOL,
'year' => TYPE_UINT,
'month' => TYPE_UINT,
'day' => TYPE_UINT,
'options' => TYPE_ARRAY_BOOL,
'who' => TYPE_NOHTML,
));
and replace it with
Code:
if ($_REQUEST['do'] == 'register')
{
$vbulletin->input->clean_array_gpc('r', array(
'agree' => TYPE_BOOL,
'year' => TYPE_UINT,
'month' => TYPE_UINT,
'day' => TYPE_UINT,
'options' => TYPE_ARRAY_BOOL,
'who' => TYPE_NOHTML,
));