ok i fixed it myself already !
heres how....
in : functions_online.php
find:
Code:
if ($value['showlink'] == 1)
{
$userinfo['where'] = "<a href=\"$key?$session[sessionurl]\">$value[where]</a>";
}
replace with:
Code:
if ($value['showlink'] == 1)
{
$url = htmlspecialchars_uni(stripslashes($userinfo['location']));
$url = addslashes($url);
$url = preg_replace('/(s|sessionhash)=[a-z0-9]{32}(&|&){0,1}/', '', $url);
if ($session['sessionurl'] != '')
{
if (strpos($url, '?') !== false)
{
$url .= "&$session[sessionurl]";
}
else
{
$url .= "?$session[sessionurl]";
}}
$userinfo['location'] = stripslashes(stripslashes($url));
$userinfo['location'] = ereg_replace('&','&',$userinfo[location]);
$userinfo['where'] = "<a href=\"$userinfo[location]\">$value[where]</a>";
}
great hack !
Quote:
edited my post ....removed the function file include from the code ....
|