|
@@ -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
|