From c64fdad3dabf40369393418d66207a09e4beb123 Mon Sep 17 00:00:00 2001
From: David Siegfried <david.siegfried@uni-vechta.de>
Date: Fri, 12 Apr 2024 12:34:45 +0000
Subject: [PATCH] fixes #4004

Closes #4004

Merge request studip/studip!2855
---
 app/controllers/course/room_requests.php | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/app/controllers/course/room_requests.php b/app/controllers/course/room_requests.php
index b9658b8c19d..cdf8b1dcb43 100644
--- a/app/controllers/course/room_requests.php
+++ b/app/controllers/course/room_requests.php
@@ -308,17 +308,6 @@ class Course_RoomRequestsController extends AuthenticatedController
                 }
                 $_SESSION[$request_id]['selected_properties']['seats'] = $this->selected_properties['seats'];
                 $_SESSION[$request_id]['room_category_id'] = $this->selected_room_category_id;
-            } else if ($_SESSION[$request_id]['search_by'] === 'category') {
-                $this->room = Room::find($_SESSION[$request_id]['room_id']);
-                if ($this->room) {
-                    $this->grouped_properties = $this->room->getGroupedProperties();
-                    $this->selected_properties = [];
-                    foreach ($this->grouped_properties as $properties) {
-                        foreach ($properties as $property) {
-                            $this->selected_properties[$property->name] = $property->state;
-                        }
-                    }
-                }
             } else {
                 // let's find all the properties belonging to the selected category
                 $this->room_category_id = $_SESSION[$request_id]['room_category_id'];
-- 
GitLab