SMF Online Listesindekiler Alfabetik Sırada
find= bul demek
Replace=değiştir demek
buna göre uygulayın siz
konunun orijinali
http://www.simplemachines.org/community/index.php?topic=20332.msg1342997#msg1342997
In BoardIndex.php, find:
Replace with:
Find:
Replace with:
Find:
Replace with:
Find:
Replace with:
find= bul demek
Replace=değiştir demek
buna göre uygulayın siz
konunun orijinali
http://www.simplemachines.org/community/index.php?topic=20332.msg1342997#msg1342997
In BoardIndex.php, find:
PHP:
$context['users_online'][$row['logTime'] . $row['memberName']] = array(
Replace with:
PHP:
$context['users_online'][strtolower($row['memberName'])] = array(
Find:
PHP:
$context['list_users_online'][$row['logTime'] . $row['memberName']] = empty($row['showOnline']) ? '<i>' . $link . '</i>' : $link;
Replace with:
PHP:
$context['list_users_online'][strtolower($row['memberName'])] = empty($row['showOnline']) ? '<i>' . $link . '</i>' : $link;
Find:
PHP:
krsort($context['users_online']);
Replace with:
PHP:
ksort($context['users_online']);
Find:
PHP:
krsort($context['list_users_online']);
Replace with:
PHP:
ksort($context['list_users_online']);