From af60e6f96166a394db0a98735e209a26f360f46a Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Fri, 18 Jul 2014 21:01:12 +0000 Subject: [PATCH] Change the order of the device device_label, device_description --- app/devices/devices.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/devices/devices.php b/app/devices/devices.php index 141a703d9b..eaa58e76f6 100644 --- a/app/devices/devices.php +++ b/app/devices/devices.php @@ -118,7 +118,7 @@ else { $sql .= ") "; } if (strlen($order_by) == 0) { - $sql .= "order by device_mac_address asc "; + $sql .= "order by device_label, device_description asc "; } else { $sql .= "order by $order_by $order ";