Quote:
Originally Posted by GlitterKill
in the admincp when managing an award (giving a new one) how can the list of current members with the award be sorted alphabetically? Since I have multiple moderators and alot of award recipients there have been a few duplicate awards given. Sorting the list like this would make it easier to prevent that problem. 
|
well, I dont have a sorting argument yet, but you can do something like this:
edit /admincp/award.php
Line 722-727:
LOOK FOR
Quote:
$awardusers = $db->query_read("
SELECT au.*, u.username
FROM " . TABLE_PREFIX . "award_user AS au
LEFT JOIN " . TABLE_PREFIX . "user AS u USING (userid)
WHERE au.award_id=". $vbulletin->GPC['award_id'] ."
");
|
REPLACE WITH
Quote:
$awardusers = $db->query_read("
SELECT au.*, u.username
FROM " . TABLE_PREFIX . "award_user AS au
LEFT JOIN " . TABLE_PREFIX . "user AS u USING (userid)
WHERE au.award_id=". $vbulletin->GPC['award_id'] ."
ORDER BY u.username
");
|