Order hulls by name.
authorCMDR furrycat <elite@furrycat.net>
Sun, 19 Jun 2016 07:13:10 +0000 (03:13 -0400)
committerCMDR furrycat <elite@furrycat.net>
Sun, 19 Jun 2016 07:45:13 +0000 (03:45 -0400)
lib/hull.php

index 93cb301..48ce678 100644 (file)
@@ -48,7 +48,7 @@
 
     $q = new HullQuery;
     if ($action) $q->filterById($action);
-    $hulls = $q->find();
+    $hulls = $q->orderByName()->find();
     if (! count($hulls)) echo "<p>No hulls</p>\n";
     echo "<div class=\"overflow\">\n";
     foreach ($hulls as $hull) {