Can someone please tell me why vbulletin is telling me it's unknown location at Who's online?
These are enabled at the plugins;
Online_location_prossess
PHP Code:
if ($filename == 'forms.php' && $actions['do'] == 'forms')
{
$userinfo['activity'] = 'forms';
}
if ($filename == 'forms.php' && in_array($actions['do'], array('form', 'postform', 'updateformresult')))
{
$userinfo['activity'] = 'form';
}
Online_location_unknown
PHP Code:
if($userinfo['activity'] == 'forms')
{
$userinfo['where'] = '<a href="forms.php?'.$vbulletin->session->vars[sessionurl].'do=forms"> '.$vbphrase[Become_admin_form].'</a>';
$userinfo['action'] = $vbphrase['forms'];
$handled = true;
}
$fid = $userinfo[fid];
if($userinfo['activity'] == 'form')
{
$userinfo['where'] = '<a href="forms.php?'.$vbulletin->session->vars[sessionurl]."do=form&fid=$fid\"> ".$vbphrase[viewing_form_generic].'</a>';
$userinfo['action'] = $vbphrase['forms'];
$handled = true;
}