that is in page.tpl.php of your theme.
[code]
//## display recent logged members
$res = sql_query("SELECT from ".tb()."accounts order by lastlogin desc limit 20");
/
//use this line if you want to display members who have avatars.
$res = sql_query("SELECT from ".tb()."accounts where avatar!='' order by lastlogin desc limit 20");
/
while($row = sql_fetch_array($res)) {
$recentlogin .= avatar($row,25);
}
[/code]
limit 20 is the max of avatars you have now set to 20
avatar($row,25) size of the avatar is now set to 25 |