coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 themes/skins/templates => Topic started by: yaniv on October 23, 2006, 01:32:33 AM

Title: Member List - Another question about the order
Post by: yaniv on October 23, 2006, 01:32:33 AM
I looked all over the boards but i could not find this, i know its a stupid question,

but how can I sort the member list order, lets say for example by the number of files uploaded.

but i dont mean just clicking the order thing, I mean permanently so if anyone looks at it, thats the default order.

hope i made sense.

Last question I promise ;)

thanks for all your help!
Title: Re: Member List - Another question about the order
Post by: Sami on October 23, 2006, 07:13:58 AM
usermgr.php (line 156)  chenge this

    $sort = (!isset($_GET['sort']) || !isset($sort_codes[$_GET['sort']])) ? 'reg_d' : $_GET['sort'];


with this

    $sort = (!isset($_GET['sort']) || !isset($sort_codes[$_GET['sort']])) ? 'pic_d' : $_GET['sort'];
Title: Re: Member List - Another question about the order
Post by: yaniv on October 23, 2006, 08:36:50 AM
yup, that worked perfectly.  :)

Thank for your help  ;)