From: CMDR furrycat Date: Mon, 20 Jun 2016 08:43:54 +0000 (-0400) Subject: Order hulls by name when adding a ship. X-Git-Url: http://git.furryclan.net/?a=commitdiff_plain;h=e8b738ea45b8d83d8c442a1ab6b18b6cbb1778db;p=furrycat%2Frace-o-matic.git Order hulls by name when adding a ship. --- diff --git a/lib/ship.php b/lib/ship.php index 315604b..67b97b2 100644 --- a/lib/ship.php +++ b/lib/ship.php @@ -63,7 +63,7 @@ echo "
\n"; $hq = new HullQuery; - $hulls = $hq->find(); + $hulls = $hq->orderByName()->find(); $cq = new CompetitorQuery; $competitors = $cq->orderByCmdrName()->find(); if (! count($hulls)) {