[Fusionforge-commits] r8314 - in trunk/gforge/common: docman include tracker

Alain Peyrat aljeux at libremir.placard.fr.eu.org
Tue Oct 20 22:00:48 CEST 2009


Author: aljeux
Date: 2009-10-20 22:00:47 +0200 (Tue, 20 Oct 2009)
New Revision: 8314

Modified:
   trunk/gforge/common/docman/Parsedata.class.php
   trunk/gforge/common/include/GroupJoinRequest.class.php
   trunk/gforge/common/include/Permission.class.php
   trunk/gforge/common/tracker/Artifact.class.php
   trunk/gforge/common/tracker/ArtifactHistory.class.php
Log:
Fix strange comment block

Modified: trunk/gforge/common/docman/Parsedata.class.php
===================================================================
--- trunk/gforge/common/docman/Parsedata.class.php	2009-10-20 18:56:07 UTC (rev 8313)
+++ trunk/gforge/common/docman/Parsedata.class.php	2009-10-20 20:00:47 UTC (rev 8314)
@@ -26,8 +26,8 @@
 	/**
 	 *  Constructor.
 	 *
-	 *	@param
-	 *	@return
+	 *	@param	string
+	 *	@return true
 	 */
 	 var $parsers;
 	 var $p_path = "";

Modified: trunk/gforge/common/include/GroupJoinRequest.class.php
===================================================================
--- trunk/gforge/common/include/GroupJoinRequest.class.php	2009-10-20 18:56:07 UTC (rev 8313)
+++ trunk/gforge/common/include/GroupJoinRequest.class.php	2009-10-20 20:00:47 UTC (rev 8314)
@@ -169,7 +169,7 @@
 	 *      getID - get this GroupJoinRequest ID
 	 *
 	 *      @return int The group_id.
-	 * /
+	 */
 	function getID() {
 		return $this->data_array['group_id'];
 	}
@@ -196,7 +196,7 @@
 	 *      getComments - get the field comments.
 	 *
 	 *      @return text The field.
-	 * /
+	 */
 	function getComments() {
 		return $this->data_array['comments'];
 	}

Modified: trunk/gforge/common/include/Permission.class.php
===================================================================
--- trunk/gforge/common/include/Permission.class.php	2009-10-20 18:56:07 UTC (rev 8313)
+++ trunk/gforge/common/include/Permission.class.php	2009-10-20 20:00:47 UTC (rev 8314)
@@ -139,7 +139,7 @@
 	 *  fetchData - fetch the data for this Permission from the database.
 	 *
 	 *  @return	boolean success.
-	 *	@access private.
+	 *	@access private
 	 */
 	function fetchData() {
 		$res = db_query_params ('SELECT * FROM user_group WHERE user_id=$1 AND group_id=$2',
@@ -304,7 +304,7 @@
 	 *	getPermData - returns the assocative array from the db.
 	 *
 	 *	@return array The array of data.
-	 *	@access private.
+	 *	@access private
 	 */
 	function &getPermData() {
 		return $this->data_array;

Modified: trunk/gforge/common/tracker/Artifact.class.php
===================================================================
--- trunk/gforge/common/tracker/Artifact.class.php	2009-10-20 18:56:07 UTC (rev 8313)
+++ trunk/gforge/common/tracker/Artifact.class.php	2009-10-20 20:00:47 UTC (rev 8314)
@@ -701,7 +701,7 @@
 	 *	@param	string	The message being attached.
 	 *	@param	string	Email address of message creator.
 	 *	@param	bool	Whether to email out a followup.
-	 *	@access private.
+	 *	@access private
 	 *  @return	boolean	success.
 	 */
 	function addMessage($body,$by=false,$send_followup=false) {
@@ -747,7 +747,7 @@
 	 *
 	 *  @param	string	The name of the field in the database being modified.
 	 *  @param	string	The former value of this field.
-	 *  @access private.
+	 *  @access private
 	 *  @return	boolean	success.
 	 */
 	function addHistory($field_name,$old_value) {
@@ -1317,7 +1317,7 @@
 	 *	@param	int		(1) initial/creation (2) update.
 	 *	@param	array	Array of additional addresses to mail to.
 	 *	@param	array	Array of fields changed in this update .
-	 *	@access private.
+	 *	@access private
 	 *	@return	boolean	success.
 	 */
 	function mailFollowup($type, $more_addresses=false, $changes='') {

Modified: trunk/gforge/common/tracker/ArtifactHistory.class.php
===================================================================
--- trunk/gforge/common/tracker/ArtifactHistory.class.php	2009-10-20 18:56:07 UTC (rev 8313)
+++ trunk/gforge/common/tracker/ArtifactHistory.class.php	2009-10-20 20:00:47 UTC (rev 8314)
@@ -157,7 +157,7 @@
 	 *	getName - get the name.
 	 *
 	 *	@return	string	The name.
-	 * /
+	 */
 	function getName() {
 		return $this->data_array['category_name'];
 	}
@@ -166,11 +166,10 @@
 	 *	getAssignee - get the user_id of the person to assign this category to.
 	 *
 	 *	@return int user_id.
-	 * /
+	 */
 	function getAssignee() {
 		return $this->data_array['auto_assign_to'];
 	}
-	*/
 }
 
 // Local Variables:




More information about the Fusionforge-commits mailing list