derfelix,
I asked Brad about that... I think he forgot to change his internal script .. lol. He has photo ranking, and has been working on it for a long time. Photo upload was one part of it and he decided to release it to everyone after he got so far with it... so he pulled it out of a bigger script and released it, so luckily there was no real big mess ups..
Second SirSteve and grumpy.. Brad has updated that .. a few times, just never got around to releasing it..
find this code.. in the (admin/user.php) file:
PHP Code:
$users=$DB_site->query("SELECT user.userid,username,email,picture_name,photodesc,ipaddress,userfield.* FROM user,userfield WHERE $condition AND userfield.userid=user.userid ORDER BY $orderby $direction LIMIT $limitstart,$limitnumber");
and change it to this:
PHP Code:
$users=$DB_site->query("SELECT user.userid,username,email,picture_name,photodesc,ipaddress,userfield.* FROM user,userfield WHERE $condition AND userfield.userid=user.userid AND picture_name<>'' ORDER BY $orderby $direction LIMIT $limitstart,$limitnumber");
what was added was a WHERE clause (picture_name<>'') meaning where the picture_name field is not empty.
So it will only display the users that have uploaded a photo.
Does this help..