Online Listesindekiler Alfabetik Sıralansın

tertunc

Dekan
Emektar
Katılım
18 Ağustos 2007
Mesajlar
7,204
Reaksiyon puanı
21
Puanları
218
Sources/BoardIndex.php

Bul:
Kod:
		$context['users_online'][$row['logTime'] . $row['memberName']] = array(
Değiştir:
Kod:
		$context['users_online'][strtolower($row['memberName'])] = array(

Bul:
Kod:
		$context['list_users_online'][$row['logTime'] . $row['memberName']] = empty($row['showOnline']) ? '<i>' . $link . '</i>' : $link;
Değiştir:
Kod:
		$context['list_users_online'][strtolower($row['memberName'])] = empty($row['showOnline']) ? '<i>' . $link . '</i>' : $link;

Bul:
Kod:
	krsort($context['users_online']);
Değiştir:
Kod:
	ksort($context['users_online']);

Bul:
Kod:
	krsort($context['list_users_online']);
Değiştir:
Kod:
	ksort($context['list_users_online']);

Bir Sarge yapımıdır..
Orjinal Konu


http://www.simplemachines.org/community/index.php?topic=203106.0#quickreply
 
Üst