You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just had to manually tell mellivora to sort the challenges the way I want. By default, mellivora/htdocs/challenges.php is set to c.points ASC, c.id ASC where I needed it to be different. I also (for OCD sake) changed it in mellivora/htdocs/admin/index.php from points ASC. It would be vastly easier not to modify source code to accomplish this!
The text was updated successfully, but these errors were encountered:
Maybe this should be a wiki entry, for those that want the different sort option. Something along the lines of...
For those that want alphabetical/numerical sorting of challenges, this can be accomplished by editing line 126 in mellivora/htdocs/challenges.php. Find/modify the line from:
ORDER BY c.points ASC, c.id ASC',
to:
ORDER BY c.title ASC, c.id ASC',
You can then entitle your questions alphabetically or number them.
I just had to manually tell mellivora to sort the challenges the way I want. By default, mellivora/htdocs/challenges.php is set to c.points ASC, c.id ASC where I needed it to be different. I also (for OCD sake) changed it in mellivora/htdocs/admin/index.php from points ASC. It would be vastly easier not to modify source code to accomplish this!
The text was updated successfully, but these errors were encountered: