From 0150aca6ad71bb7b000a377b297f5c739773a316 Mon Sep 17 00:00:00 2001 From: Igor Scheller Date: Fri, 28 Dec 2018 15:36:45 +0100 Subject: Order rooms in shift overview by name closes #551 (Order of Rooms in overview) --- includes/model/Shifts_model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/model/Shifts_model.php b/includes/model/Shifts_model.php index 4be65dda..6f422c32 100644 --- a/includes/model/Shifts_model.php +++ b/includes/model/Shifts_model.php @@ -119,7 +119,7 @@ function Shifts_by_ShiftsFilter(ShiftsFilter $shiftsFilter) AND `NeededAngelTypes`.`count` > 0 AND NOT `Shifts`.`PSID` IS NULL) AS tmp_shifts - ORDER BY `start`'; + ORDER BY `room_name`, `start`'; return DB::select( $sql, -- cgit v1.2.3-54-g00ecf