25-03-2019 Saat: 01:57
Tam olarak ne istediği anlamadım ama şundan bahsediyorsan şöyle;
Adım 1: FTP [c]inc/functions_forumlist.php[/c] dosyasını açın.
Bul:
Değiştir:

Adım 1: FTP [c]inc/functions_forumlist.php[/c] dosyasını açın.
Bul:
Kod:
$lastpost_profilelink = build_profile_link($lastpost_data['lastposter'], $lastpost_data['lastposteruid']);
Değiştir:
Kod:
if($lastpost_data['lastposteruid'] == 0)
{
$lastpost_profilelink = format_name($lastpost_data['lastposter'], 1);
}
else
{
$lastpost_profilelink = $db->query("SELECT usergroup, displaygroup FROM ".TABLE_PREFIX."users WHERE uid='".$lastpost_data['lastposteruid']."'");
$lastpost_profilelink = $db->fetch_array($lastpost_profilelink);
$lastpost_profilelink = format_name($lastpost_data['lastposter'], $lastpost_profilelink['usergroup'], $lastpost_profilelink['displaygroup']);
$lastpost_profilelink = build_profile_link($lastpost_profilelink, $lastpost_data['lastposteruid']);
}