Order rooms in shift overview by name

closes #551 (Order of Rooms in overview)
This commit is contained in:
Igor Scheller 2018-12-28 15:36:45 +01:00
parent 794df6f99e
commit 0150aca6ad
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ function Shifts_by_ShiftsFilter(ShiftsFilter $shiftsFilter)
AND `NeededAngelTypes`.`count` > 0 AND `NeededAngelTypes`.`count` > 0
AND NOT `Shifts`.`PSID` IS NULL) AS tmp_shifts AND NOT `Shifts`.`PSID` IS NULL) AS tmp_shifts
ORDER BY `start`'; ORDER BY `room_name`, `start`';
return DB::select( return DB::select(
$sql, $sql,