diff options
| author | Moritz Strohm <strohm@data-quest.de> | 2025-08-26 12:14:16 +0000 |
|---|---|---|
| committer | Moritz Strohm <strohm@data-quest.de> | 2025-08-26 12:14:16 +0000 |
| commit | bf917c0954e28e5ed13804dfb3fe1da6cf559b3c (patch) | |
| tree | b07a8a89531f139634270e1140b5e4be7f538d92 | |
| parent | abc663bb1e70e39319341262d7eb18c58952ee6f (diff) | |
fixed display of publicly available room plans, fixes #5839 #5840
Closes #5839 and #5840
Merge request studip/studip!4461
| -rw-r--r-- | app/controllers/resources/room_planning.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/resources/room_planning.php b/app/controllers/resources/room_planning.php index 8af42ea..7032518 100644 --- a/app/controllers/resources/room_planning.php +++ b/app/controllers/resources/room_planning.php @@ -140,7 +140,7 @@ class Resources_RoomPlanningController extends AuthenticatedController ); if ($this->resource->requestable) { - $this->display_all_requests = Request::bool('display_all_requests', true); + $this->display_all_requests = Request::bool('display_all_requests'); } else { $this->display_all_requests = false; } |
