Gossamer Forum
Home : Products : DBMan : Customization :

Alphabetize users in Admin Panel?

Quote Reply
Alphabetize users in Admin Panel?
Is it possible to alphabetize the user drop-down list in the Admin User Management page? I've looks for mods to no avail.

TIA
Quote Reply
Re: [jtkelly] Alphabetize users in Admin Panel? In reply to
see http://redundantcartridge.com/dbman/index.htm

faq, category "admin", title "sort users in admin display"
Quote Reply
Re: [jtkelly] Alphabetize users in Admin Panel? In reply to
In db.cgi


# Now let's load the list of users.
open (PASS, "<$auth_pw_file") or &cgierr ("unable to open: $auth_pw_file.\nReason: $!");
if ($db_use_flock) { flock(PASS, 1); }

#mod
@lines = sort <PASS>;

close PASS;