From 6cf98ccf46c1c6aae846b4c5f8ff66a527cd685b Mon Sep 17 00:00:00 2001 From: rohieb Date: Sat, 26 Jul 2008 19:33:26 +0200 Subject: [PATCH] mod_roomReservationBookingTable: if weekends are not shown, show the next week already on saturday --- includes/mod_roomReservationBookingTable.inc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/includes/mod_roomReservationBookingTable.inc b/includes/mod_roomReservationBookingTable.inc index b592ce4..8d017f5 100644 --- a/includes/mod_roomReservationBookingTable.inc +++ b/includes/mod_roomReservationBookingTable.inc @@ -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; -- 2.20.1