documentation: Makefile puts sourcedoc in doc/source, installs everything in /usr...
[iserv-mod-room-reservation.git] / includes / mod_roomReservationBookingTable.inc
old mode 100755 (executable)
new mode 100644 (file)
index b592ce4..8d017f5
@@ -171,7 +171,12 @@ class mod_roomReservationBookingsTable /* extends mclWidget */ {
     } else {
       $this->setRoom($aoRooms[0]->getName());
     }
-    $this->setDate(time());
+    // if weekends are not shown, show the next week already on saturday
+    if(!$this->oCfg->isShowWeekend() and date("w") == 6) {
+      $this->setDate(strtotime("monday"));
+    } else {
+      $this->setDate(time());
+    }
     $this->setAction(MOD_ROOM_RESERVATION_BT_ACTION_SHOW);
     $this->nPostInterval = 0;
    
This page took 0.031861 seconds and 4 git commands to generate.