Undid the change of the include path. It was better the way it was.
[eq/.git] / inc / class.eq.inc.php
index 68bc93dc1ad16fb35cb890f64d0a5096a3025596..a5cc2b4df67691b13f929f8b6fb99894078d34d4 100644 (file)
@@ -68,12 +68,12 @@ class eq
  
   function eq()
     {
-      if(file_exists('setup/eq_config.local')) {
-       include('setup/eq_config.local');
+      if(file_exists("setup/eq_config.local")) {
+       include("setup/eq_config.local");
       } else {
-       include('setup/eq_config');
+       include("setup/eq_config");
       }
-
+      
       $this->script_path = "$this->application_path"."/bin";
       $this->max_presidency_members = 99;
       $this->max_appointments = 32768;
@@ -2727,7 +2727,9 @@ class eq
        // Print the hometeaching interview stats
        for($m=$num_months; $m >=0; $m--) {
          $month = $current_month - $m;
+         if($month < 0) { $month = 12 + $month; } // Handle going backwards over a year boundary
          $month_begins = $month % $this->monthly_hometeaching_interview_stats;
+         //print "$month % $this->monthly_hometeaching_interview_stats = $month_begins <br>";
          if($this->monthly_hometeaching_interview_stats == 1) { $month_begins = 1; }
          if(($month_begins) == 1) { $total = $ints[$m]; }
          else { $total += $ints[$m]; }
@@ -2748,6 +2750,7 @@ class eq
       $totals = "<tr><td><b><font size=-2>$total_companionships Total Comps<br>Interview Totals:</font></b></td>";
       for($m=$num_months; $m >=0; $m--) {
        $month = $current_month - $m;
+       if($month < 0) { $month = 12 + $month; } // Handle going backwards over a year boundary
        $month_begins = $month % $this->monthly_hometeaching_interview_stats;
        if($this->monthly_hometeaching_interview_stats == 1) { $month_begins = 1; }
        if(($month_begins) == 1) { $total = $total_ints[$m]; }