Quote:
Originally Posted by teksigns
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)
{
require_once('./includes/functions_login.php');
$userinfo['location'] = stripslashes(fetch_replaced_session_url(htmlspecialchars_uni(stripslashes($userinfo['location']))));
$userinfo['location'] = ereg_replace('&','&',$userinfo[location]);
$userinfo['where'] = "<a href=\"$userinfo[location]\">$value[where]</a>";
}
great hack !
|
I cant find the code in functions_online.php