expanded tabs
[iserv-mod-room-reservation.git] / inc / mod_roomReservationBookingPage.inc
index 219c7bd..61fc219 100644 (file)
@@ -39,7 +39,7 @@ require_once("mod_room-reservation/mod_roomReservationConfig.inc");
  */
 class mod_roomReservationBookingPage extends mod_roomReservationPage {
   
-       /** (mod_roomReservationConfig) Reference to the configuration object */
+  /** (mod_roomReservationConfig) Reference to the configuration object */
   protected $oCfg;
   /** 
    * (mod_roomReservationRoomsManager) Reference to the rooms manager object 
@@ -174,7 +174,7 @@ class mod_roomReservationBookingPage extends mod_roomReservationPage {
     if(count($aor) > 0) {
       echo _c("room-reservation:Room:") . sprintf(" <select onchange=".
         "'document.forms[\"room\"].submit()' width='250' ".
-       "name='mod_roomReservationBookingTable[room]'>\n", $this->getStart());
+        "name='mod_roomReservationBookingTable[room]'>\n", $this->getStart());
       foreach($aor as $or) {
         // note to myself: no qu() here, seems this is being done automagically
         echo sprintf("<option value='%s'%s>%s</option>\n", $or->getName(),
@@ -185,14 +185,14 @@ class mod_roomReservationBookingPage extends mod_roomReservationPage {
         $GLOBALS["stdbtn"], _("Change"));
     } else {
       printf("<p>%s</p>\n", _c("room-reservation:No rooms have been ".
-       "configured yet."));
+        "configured yet."));
       return;
     }
         
     // Print line with next 5 or so weeks
     $strSep = "&nbsp;| ";
     $strLink = sprintf("<a href='%s?mod_roomReservationBookingTable[date]=%%d".
-       "&mod_roomReservationBookingTable[room]=%%s'>%%s</a>",
+      "&mod_roomReservationBookingTable[room]=%%s'>%%s</a>",
       $_SERVER["PHP_SELF"]);
     echo "<p>".sprintf($strLink, time(), qu($this->getRoom()),
       _c("room-reservation:Current Week")) . $strSep;
This page took 0.026239 seconds and 4 git commands to generate.