From 3319d1f2ac9bd7dec6753458db0506cdd6c54957 Mon Sep 17 00:00:00 2001
From: "Alan J. Pippin" <ajp@server.pippins.net>
Date: Sun, 16 Mar 2008 20:43:42 -0600
Subject: [PATCH] Fixed yearly ppi scheduling tool bug which caused non
 eqpresppi's to count as yearly PPIs.

---
 inc/class.eq.inc.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inc/class.eq.inc.php b/inc/class.eq.inc.php
index ca6b809..3cbb028 100644
--- a/inc/class.eq.inc.php
+++ b/inc/class.eq.inc.php
@@ -1570,7 +1570,7 @@ class eq
 	  // If this elder has had a yearly PPI this year, don't show him on the schedule list
 	  $year_start = $year - 1 . "-12-31"; $year_end = $year + 1 . "-01-01";
 	  $sql = "SELECT * FROM eq_ppi WHERE date > '$year_start' AND date < '$year_end' ".
-	     "AND elder=" . $id;
+	     "AND elder=" . $id . " AND eqpresppi=1";
 	  $this->db2->query($sql,__LINE__,__FILE__);
 	  
 	  if(!$this->db2->next_record()) {
-- 
2.34.1