Quote:
Originally Posted by swiftor
Is there a way to change the default sort of tournaments? Right now it defaults to "Name", I'd like it to sort by "Status" so that tournaments that are open and need players lists first.
Would be cool if that was color coded or broken down by section.
|
Find in tournaments.php
PHP Code:
if (!in_array($sort, $allsorts))
{
$sort = 'id';
}
Replace with
PHP Code:
if (!in_array($sort, $allsorts))
{
$sort = 'status';
}