Ana Sayfa'da Son Mesaj Yazarının Kullanıcı Grup Rengini Gostermek MyBB 1.6 Uyumlu

Ftp’den inc/functions_forumlist.php dosyasını acın ve aşağıdaki adımları uygulayın:


inc/functions_forumlist.php dosyasında bulmanız gereken kodlar:
PHP: $lastpost_profilelink = build_profile_link($lastpost_data['lastposter'], $lastpost_data['lastposteruid']); Aşağıdaki kodlarla komple değişin:
PHP: global $db; $lastposter_query = $db->query("SELECT username, usergroup, displaygroup FROM ".TABLE_PREFIX."users WHERE uid='".$lastpost_data['lastposteruid']."'"); $lastposter_format = $db->fetch_array($lastposter_query); $lastposter = format_name($lastposter_format['username'], $lastposter_format['usergroup'], $lastposter_format['displaygroup']); $lastpost_profilelink = build_profile_link($lastposter, $lastpost_data['lastposteruid']);