debian/rules: temporary installation directory is removed after .deb file has been...
[iserv-mod-room-reservation.git] / includes / mod_roomReservationBookingsManager.inc
index 722c164..124068d 100644 (file)
@@ -144,7 +144,12 @@ class mod_roomReservationBookingsManager {
       ($ob->getUid() == null and !$this->oCfg->userCanBook())) {
       throw new AccessException(MOD_ROOM_RESERVATION_ERROR_ACCESS_DENIED);
     }
-      
+    
+    // test if room is whitelisted
+    if(!$this->oCfg->isRoomWhitelisted($ob->getRoom())) {
+      throw new Exception(MOD_ROOM_RESERVATION_ERROR_ROOM_NOT_WHITELISTED);
+    }
+    
     $strWhere = null;
     $strLog = "";
 
This page took 0.024212 seconds and 4 git commands to generate.