Changeset 1945063
- Timestamp:
- 09/22/2018 01:03:28 AM (8 years ago)
- Location:
- amilia-store/trunk
- Files:
-
- 2 edited
-
amilia-store-standings.php (modified) (1 diff)
-
amilia-store.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
amilia-store/trunk/amilia-store-standings.php
r1939290 r1945063 192 192 } 193 193 teams.sort(function(a,b) { 194 if (a.Pts == b.Pts) return 0; 194 if (a.Pts == b.Pts) { 195 if (a.F == b.F) { 196 if (a.GD == b.GD) return 0; 197 return a.GD < b.GD; 198 } 199 return a.F < b.F; 200 } 195 201 return a.Pts < b.Pts; 196 202 }); -
amilia-store/trunk/amilia-store.php
r1943984 r1945063 6 6 Author: Martin Drapeau <martin.drapeau@amilia.com> 7 7 Copyright: 2014-2018 Amilia 8 Version: 2.6. 68 Version: 2.6.7 9 9 Author URI: http://www.amilia.com/ 10 10 License: Apache License 2.0
Note: See TracChangeset
for help on using the changeset viewer.