Sort list of masks
authorJoey Schulze <joey@infodrom.org>
Fri, 26 Feb 2010 22:37:40 +0000 (23:37 +0100)
committerJoey Schulze <joey@infodrom.org>
Fri, 26 Feb 2010 22:37:40 +0000 (23:37 +0100)
masks/sys_mask.php

index ae25b48..eccf8e2 100644 (file)
@@ -1,5 +1,10 @@
 <?php
 
+function discover_cmp($a, $b)
+{
+  return strcmp($a['id'],$b['id']);
+}
+
 function discover_masks()
 {
   $info = array();
@@ -14,6 +19,7 @@ function discover_masks()
     }
   closedir($d);
 
+  usort($info,discover_cmp);
   return $info;
 }