diff --git a/htdocs/core/filemanagerdol/connectors/php/io.php b/htdocs/core/filemanagerdol/connectors/php/io.php
index b39a8cfbc947e9e49ae02badd9a1b47c85258df6..72aea0e0eb082efb2275b6dc4652c8becab9cf8c 100644
--- a/htdocs/core/filemanagerdol/connectors/php/io.php
+++ b/htdocs/core/filemanagerdol/connectors/php/io.php
@@ -21,9 +21,13 @@
  *
  * This is the File Manager Connector for PHP.
  */
+
 /**
- * @param string $sBasePath
- * @param string $sFolder
+ * CombinePaths
+ * 
+ * @param   string $sBasePath     sBasePath
+ * @param   string $sFolder       sFolder
+ * @return  string                Combined path
  */
 function CombinePaths( $sBasePath, $sFolder )
 {
@@ -385,8 +389,12 @@ EOF;
 
 // This is the function that sends the results of the uploading process to CKE.
 /**
- * @param string $callback
- * @param string $sFileUrl
+ * SendCKEditorResults
+ * 
+ * @param   string  $callback       callback
+ * @param   string  $sFileUrl       sFileUrl
+ * @param   string  $customMsg      customMsg
+ * @return  void
  */
 function SendCKEditorResults ($callback, $sFileUrl, $customMsg = '')
 {
diff --git a/htdocs/core/lib/functionsnumtoword.lib.php b/htdocs/core/lib/functionsnumtoword.lib.php
index 3472c846366c4af5f1d076d6df97cba05876b74b..24a7cd86e4746f2611a7ab3d0df5735f51d5a4ca 100644
--- a/htdocs/core/lib/functionsnumtoword.lib.php
+++ b/htdocs/core/lib/functionsnumtoword.lib.php
@@ -110,11 +110,14 @@ function dolNumberToWord($numero, $langs, $numorcurrency='number')
 }
 
 /**
- * @param integer $hundreds
- * @param integer $tens
- * @param integer $units
+ * hundreds2text
+ * 
+ * @param integer $hundreds     Hundreds
+ * @param integer $tens         Tens
+ * @param integer $units        Units
  */
-function hundreds2text ($hundreds, $tens, $units){
+function hundreds2text($hundreds, $tens, $units)
+{
 	if ($hundreds==1 && $tens==0 && $units==0){
 		return "CIEN";
 	}