skip
accept
reject "; } admin_page_head("screen profiles"); if (function_exists('profile_screen_query')) { $query = profile_screen_query(); } else if (profile_screening()) { $query = "select * from profile, user where profile.userid=user.id " ." and has_picture>0 " ." and verification=0 " ." limit 20" ; } else { $query = "select * from profile, user where profile.userid=user.id " ." and has_picture>0 " ." and verification=0 " ." and uotd_time is null " ." and expavg_credit>1 " ." order by recommend desc limit 20" ; } $result = mysql_query($query); $n = 0; echo "
\n"; start_table(); $found = false; while ($profile = mysql_fetch_object($result)) { $found = true; echo " "; buttons($n); echo " "; echo "recommends: $profile->recommend
rejects: $profile->reject
Name: $profile->name
"; show_profile($profile, $logged_in_user, true); echo "
\n"; echo "userid\">\n"; $n++; } end_table(); if ($found) { echo " "; } else { echo "No more profiles to screen."; } echo "
"; admin_page_tail(); $cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit ?>