Looking at this part of the script what is haopening here below and what should or will happen if I change this the case to registerxx.php unstaed?
includes - functions_online.php - 1390
switch($filename)
{
case 'register.php':
if ($values['do'] == 'requestemail' OR $values['do'] == 'emailcode')
{
$userinfo['activity'] = 'requestemail';
}
else if ($values['a'] == 'ver' OR $values['do'] == 'activate' OR $values['a'] == 'act')
{
$userinfo['activity'] = 'activate';
}
else
{
$userinfo['activity'] = 'register';
}
break;
default:
$userinfo['activity'] = 'unknown';
($hook = vBulletinHook::fetch_hook('online_location_process ')) ? eval($hook) : false;
}
return $userinfo;
and this line above $userinfo['activity'] = 'register';
what is happen here should this get changed to registerxx
THANKS
Frank H. Shaw
|