Trustmaster |
|
---|---|
I confirm this bug, it is related with the problem in sed_url/parse_str which we have recently encountered. It will be solved in 0.6.14/0.9.0. For now, try this replacement of function sed_build_user() in system/functions.php (Genoa only):
function sed_build_user($id, $user)
{
global $cfg;
if($id == 0 && !empty($user))
{
return $user;
}
elseif($id == 0)
{
return '';
}
else
{
return (!empty($user)) ? '<a href="'.sed_url('users', array('m' => 'details', 'id' => $id, 'u' => $user)).'">'.$user.'</a>' : '?';
}
} Added 7 minutes later: Ticket #600 created. Thanks for the report! May the Source be with you!
|
|
Отредактировано: Trustmaster (07.02.2011 01:20, 14 лет назад) |