[evolvis-commits] r10463: *** empty log message ***↵

mirabilos at evolvis.org mirabilos at evolvis.org
Thu Feb 24 17:46:42 CET 2011


Author: mirabilos
Date: 2011-02-24 17:46:42 +0100 (Thu, 24 Feb 2011)
New Revision: 10463

Modified:
   trunk/gforge_base/evolvisforge-5.1/gforge/common/pm/ProjectTask.class
   trunk/gforge_base/evolvisforge-5.1/gforge/common/tracker/Artifact.class
   trunk/gforge_base/evolvisforge-5.1/gforge/common/tracker/ArtifactFactory.class
Log:
*** empty log message ***


Modified: trunk/gforge_base/evolvisforge-5.1/gforge/common/pm/ProjectTask.class
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/gforge/common/pm/ProjectTask.class	2011-02-24 16:46:41 UTC (rev 10462)
+++ trunk/gforge_base/evolvisforge-5.1/gforge/common/pm/ProjectTask.class	2011-02-24 16:46:42 UTC (rev 10463)
@@ -382,6 +382,15 @@
 	}
 
 	/**
+	 *	getLastModifiedDate - the last_modified_date of this task.
+	 *
+	 *	@return	int	the last_modified_date.
+	 */
+	function getLastModifiedDate() {
+		return $this->data_array['last_modified_date'];
+	}
+	
+	/**
 	 *	setExternalID - set a row in project_task_external_order which stores 
 	 *	an id, for example an ID generated by MS Project, which needs to be restored later
 	 */

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 16:46:41 UTC (rev 10462)
+++ trunk/gforge_base/evolvisforge-5.1/gforge/common/tracker/Artifact.class	2011-02-24 16:46:42 UTC (rev 10463)
@@ -492,6 +492,15 @@
 	}
 
 	/**
+	 *      getLastModifiedDate - the last_modified_date of this task.
+	 *
+	 *      @return int     the last_modified_date.
+	 */
+	function getLastModifiedDate() {
+		return $this->data_array['last_modified_date'];
+	}
+
+	/**
 	 *	getSummary - get text summary of artifact.
 	 *
 	 *	@return	string The summary (subject).

Modified: trunk/gforge_base/evolvisforge-5.1/gforge/common/tracker/ArtifactFactory.class
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/gforge/common/tracker/ArtifactFactory.class	2011-02-24 16:46:41 UTC (rev 10462)
+++ trunk/gforge_base/evolvisforge-5.1/gforge/common/tracker/ArtifactFactory.class	2011-02-24 16:46:42 UTC (rev 10463)
@@ -242,8 +242,7 @@
 			WHERE 
 			group_artifact_id='". $this->ArtifactType->getID() ."'
 			 $status_str $assigned_str $category_str $group_str $resolution_str
-			and (update_date>'" . $this->last_changed . "'
-			or message_date >'" . $this->last_changed . "')   
+			and last_modified_date > '" . $this->last_changed . "'
 			ORDER BY group_artifact_id ".$this->sort.", ". $this->order_col ." ".$this->sort;
 
 



More information about the evolvis-commits mailing list