expanded tabs
[iserv-mod-room-reservation.git] / inc / mod_roomReservationConfig.inc
index 8dde982..a1f943a 100644 (file)
@@ -122,7 +122,7 @@ class mod_roomReservationConfig {
    * @{
    */
   
-       /**
+  /**
    * Add a timeslice. A check is done that the timeslices do not overlap, and
    * in this case, an Exception is thrown.
    * @param $oTs (mod_roomReservationTimeslice)
@@ -183,7 +183,7 @@ class mod_roomReservationConfig {
         throw new SQLException(MOD_ROOM_RESERVATION_ERROR_SQL);
       } else {
         log_insert(sprintf("Raum „%s“ für Buchungen zur Verfügung gestellt",
-         $sRoom));
+    $sRoom));
       }
     }
   }
@@ -195,7 +195,7 @@ class mod_roomReservationConfig {
    */
   public function unWhitelistRoom($sRoom) {
     $h = db_query("DELETE FROM mod_roomreservation_roomswhitelist WHERE ".
-       "rrr_name = $1;", $sRoom);
+      "rrr_name = $1;", $sRoom);
     if(!$h) {
       throw new SQLException(MOD_ROOM_RESERVATION_ERROR_SQL);
     } else {
@@ -212,7 +212,7 @@ class mod_roomReservationConfig {
    */
   public function isRoomWhitelisted($sRoom) {
     $h = db_query("SELECT * FROM mod_roomreservation_roomswhitelist WHERE ".
-       "rrr_name=$1;", $sRoom);
+      "rrr_name=$1;", $sRoom);
     if(!$h) {
       throw new SQLException(MOD_ROOM_RESERVATION_ERROR_SQL);
     }
@@ -256,7 +256,7 @@ class mod_roomReservationConfig {
     array_merge($this->asMessages, array($sMessage));
   }
   
-       /**
+  /**
    * Get all timeslices in chronological order
    * @return array of rmTimeslice
    */
This page took 0.029396 seconds and 4 git commands to generate.