[Fusionforge-commits] r18452 - trunk/src/common/include

Marc-Etienne VARGENAU vargenau at fusionforge.org
Thu Nov 14 16:46:12 CET 2013


Author: vargenau
Date: 2013-11-14 16:46:12 +0100 (Thu, 14 Nov 2013)
New Revision: 18452

Modified:
   trunk/src/common/include/utils.php
Log:
Update PHP Doc

Modified: trunk/src/common/include/utils.php
===================================================================
--- trunk/src/common/include/utils.php	2013-11-14 15:24:39 UTC (rev 18451)
+++ trunk/src/common/include/utils.php	2013-11-14 15:46:12 UTC (rev 18452)
@@ -280,8 +280,8 @@
 /**
  * util_convert_body() - Convert body of the email message
  *
- * @param		string	The body of the email message
- * @param		string	The charset of the email message
+ * @param		string	$str		The body of the email message
+ * @param		string	$charset	The charset of the email message
  * @return		string	The converted body of the email message
  *
  */
@@ -367,8 +367,8 @@
 /**
  * util_result_column_to_array() - Takes a result set and turns the optional column into an array
  *
- * @param		int		The result set ID
- * @param		int		The column
+ * @param		int		$result	The result set ID
+ * @param		int		$col	The column
  * @return		array
  *
  */
@@ -393,11 +393,10 @@
 /**
  * util_line_wrap() - Automatically linewrap text
  *
- * @param		string	The text to wrap
- * @param		int		The number of characters to wrap - Default is 80
- * @param		string	The line break to use - Default is '\n'
- * @return string
- * @returns The wrapped text
+ * @param		string	$text	The text to wrap
+ * @param		int		$wrap	The number of characters to wrap - Default is 80
+ * @param		string	$break	The line break to use - Default is '\n'
+ * @return		string			The wrapped text
  *
  */
 function util_line_wrap($text, $wrap = 80, $break = "\n") {
@@ -407,7 +406,7 @@
 /**
  * util_make_links() - Turn URL's into HREF's.
  *
- * @param		string	The URL
+ * @param		string	$data	The URL
  * @return mixed|string	The HREF'ed URL
  *
  */




More information about the Fusionforge-commits mailing list