Browse Source

Sort tags in details view by name

spaghetti 7 years ago
parent
commit
91faea2797
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      sections/torrents/details.php

+ 1
- 1
sections/torrents/details.php View File

@@ -1,6 +1,6 @@
1 1
 <?php
2 2
 function compare($X, $Y) {
3
-  return($Y['score'] - $X['score']);
3
+  return($Y['name'] < $X['name']);
4 4
 }
5 5
 define('MAX_PERS_COLLAGES', 3); // How many personal collages should be shown by default
6 6
 define('MAX_COLLAGES', 5); // How many normal collages should be shown by default

Loading…
Cancel
Save