From: Alan Jack Pippin Date: Thu, 6 Sep 2007 03:16:08 +0000 (-0600) Subject: Changed default "blank appointment rows" to show from 1 to 4 X-Git-Tag: release_0_1_0~19 X-Git-Url: http://git.pippins.net/embedvideo/.git/static/git-logo.png?a=commitdiff_plain;h=c5523b563b93d5cfb85ba5a2e9b206ceac856c65;hp=7bcd66aba8d66b948c78b1ae3dc830888a4693f0;p=eq%2F.git Changed default "blank appointment rows" to show from 1 to 4 --- diff --git a/inc/class.eq.inc.php b/inc/class.eq.inc.php index c4e73ef..9e31326 100644 --- a/inc/class.eq.inc.php +++ b/inc/class.eq.inc.php @@ -3486,7 +3486,7 @@ class eq $uid = 0; // Update an existing appointment - if($appointment != 0) + if($appointment < 2048) { //Only perform a database update if we have made a change to this appointment $sql = "SELECT * FROM eq_appointment where " . @@ -3512,10 +3512,10 @@ class eq } // Add a new appointment - else if(($appointment == 0) && ($date != "") && ($time != "")) + else if(($appointment >= 2048) && ($date != "") && ($time != "")) { $this->db->query("INSERT INTO eq_appointment (appointment,presidency,family,elder,date,time,uid) " - . "VALUES ('" . $appointment . "','" . $presidency . "','" . $family . "','" + . "VALUES (NULL,'" . $presidency . "','" . $family . "','" . $elder . "','" . $date . "','" . $time . "','" . $uid ."')",__LINE__,__FILE__); //print "adding entry: appt=$appointment date: $date time: $time elder: $elder family: $family
"; @@ -3652,59 +3652,64 @@ class eq } // Create blank appointment slot - $appointment = 0; - $table_data.= ""; - - // Date selection - $table_data.= ''; - $table_data.= $this->jscal->input('sched['.$presidency.']['.$appointment.'][date]','','','','','','',$this->cal_options); - $table_data.= ''; - - // Time selection - $table_data.= ""; - $table_data.= ''; - $table_data.= ' : '; - $table_data.= ''; - $table_data.= ''; - $table_data.= ""; + for ($b=0; $b < 4; $b++) { + $appointment = 2048 + $b; + $table_data.= ""; + + // Date selection + $table_data.= ''; + $table_data.= $this->jscal->input('sched['.$presidency.']['.$appointment.'][date]','','','','','','',$this->cal_options); + $table_data.= ''; - // Elder drop down list - $table_data.= ''; - - // Family drop down list - $table_data.= ''; - - $table_data.= ''; - $table_data.= ''; + // Time selection + $table_data.= ""; + $table_data.= ''; + $table_data.= ' : '; + $table_data.= ''; + $table_data.= ''; + $table_data.= ""; + + // Elder drop down list + $table_data.= ''; + + // Family drop down list + $table_data.= ''; + + $table_data.= ''; + $table_data.= ''; + + $tr_color = $this->nextmatchs->alternate_row_color($tr_color); + $this->t->set_var('tr_color',$tr_color); + } $this->t->set_var('table_data',$table_data); $this->t->set_var('header_row',$header_row);