From ff9fe56b29ea1d02844bc54d8a9864c120ff5c17 Mon Sep 17 00:00:00 2001 From: "Alan J. Pippin" Date: Fri, 15 Feb 2008 20:02:18 -0700 Subject: [PATCH] Fixed "interview total" bug when pulling up previous quarters of history. --- inc/class.eq.inc.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/inc/class.eq.inc.php b/inc/class.eq.inc.php index 68bc93d..e8b0fa4 100644 --- a/inc/class.eq.inc.php +++ b/inc/class.eq.inc.php @@ -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
"; 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 = "$total_companionships Total Comps
Interview Totals:
"; 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]; } -- 2.34.1