the times in the first row were not in GMT but in local time
authorrohieb <devnull@localhost>
Mon, 14 Jul 2008 12:55:33 +0000 (14:55 +0200)
committerrohieb <devnull@localhost>
Mon, 14 Jul 2008 12:55:33 +0000 (14:55 +0200)
includes/mod_roomReservationBookingTable.inc

index c19b78f..c672e52 100755 (executable)
@@ -455,8 +455,8 @@ CSS;
       $strLessons = $this->oCfg->isShowLessons() ?_sprintf_ord(
         _c("room-reservation:%s# lesson"), $nTs + 1) . "<br />" : "";
       $oTs = $this->oCfg->getTimeslice($nTs);
-      $strTs = sprintf("%s - %s", strftime(_("%#I:%M %p"), $oTs->getBegin()),
-        strftime(_("%#I:%M %p"), $oTs->getEnd()));
+      $strTs = sprintf("%s - %s", gmstrftime(_("%#I:%M %p"), $oTs->getBegin()),
+        gmstrftime(_("%#I:%M %p"), $oTs->getEnd()));
       // First column: Lesson
       echo sprintf("<tr><td class='lesson'>%s</td>", $strLessons . $strTs);
      
This page took 0.023273 seconds and 4 git commands to generate.