is it really that hard? I thought you would have figured it after poinging you to that function. Take a look here:
functions_online.php in process_online_location:
if (!empty($values['searchid']))
{
$userinfo['searchid'] = intval($values['searchid']);
$searchids .= ',' . $userinfo['searchid'];
}
if (!empty($values['threadid']))
{
$userinfo['threadid'] = intval($values['threadid']);
$threadids .= ',' . $userinfo['threadid'];
}
....
....
|