[evolvis-commits] r11149: fixed minor bug in Artifact. class tracker request #1459↵

mirabilos at evolvis.org mirabilos at evolvis.org
Thu Feb 24 18:03:49 CET 2011


Author: mirabilos
Date: 2011-02-24 18:03:49 +0100 (Thu, 24 Feb 2011)
New Revision: 11149

Modified:
   trunk/gforge_base/evolvisforge-5.1/gforge/ChangeLog
   trunk/gforge_base/evolvisforge-5.1/gforge/common/tracker/Artifact.class
Log:
fixed minor bug in Artifact.class tracker request #1459


Modified: trunk/gforge_base/evolvisforge-5.1/gforge/ChangeLog
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/gforge/ChangeLog	2011-02-24 17:03:47 UTC (rev 11148)
+++ trunk/gforge_base/evolvisforge-5.1/gforge/ChangeLog	2011-02-24 17:03:49 UTC (rev 11149)
@@ -1,17 +1,20 @@
+2005-08-30 Daniel Perez <daniel at gforgegroup.com>
+	* fixed minor bug : common/tracker/Artifact.class -> now only sends mailFollowup(s) to ACTIVE users
+2005-08-29 Daniel Perez <daniel at gforgegroup.com>
+	* admin -> update forum moderation level status, create forum with moderation status
+	* changed DB, the ability to moderate posts by the forum admins is going to be incorporated
+	* insert moderated message with or without attach
 2005-08-28  Ognyan Kulev  <ogi at fmi.uni-sofia.bg>
-
-	* docs/docbook/docbook/installation_guide/installation_guide.xml:
-	Plugins section is reviewed.
-
+	* docs/docbook/docbook/installation_guide/installation_guide.xml: Plugins section is reviewed.
 2005-08-26
 	* when attachments are downloaded, its download count is incremented
 	* forum/attachment.php secured
-2005-08-25
+2005-08-25 Daniel Perez <daniel at gforgegroup.com>
 	myforums page : added the myforums page to the "my page" and when you visit any list of forums 
 	for any group. it shows a description of all the forums you are monitoring, the project they belong to, a 
 	link to them and an indicator that tells you if there´s new content for that forum.
 
-2005-08-24
+2005-08-24 Daniel Perez <daniel at gforgegroup.com>
 	DB : after discussing some issues, fixed the variable names, and changed the schema of 
 
 forum_attachemnt_type. still works will old version anyway. referencial integrity automatically deletes 

Modified: trunk/gforge_base/evolvisforge-5.1/gforge/common/tracker/Artifact.class
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/gforge/common/tracker/Artifact.class	2011-02-24 17:03:47 UTC (rev 11148)
+++ trunk/gforge_base/evolvisforge-5.1/gforge/common/tracker/Artifact.class	2011-02-24 17:03:49 UTC (rev 11149)
@@ -1325,7 +1325,9 @@
 		$users =& user_get_objects($monitor_ids);
 		if (count($users) > 0) {
 			foreach ($users as $user) {
-				$emails[] = $user->getEmail();
+				if ($user->getStatus() == "A") { //we are only sending emails to active users
+					$emails[] = $user->getEmail();
+				}
 			}
 		}
 		



More information about the evolvis-commits mailing list