From: Antoine Musso Date: Fri, 4 Mar 2005 08:41:28 +0000 (+0000) Subject: phpdoc fixes X-Git-Tag: 1.5.0alpha1~678 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=feb72b4162e0369a110dee9c4c60318f0c6aed7e;p=lhc%2Fweb%2Fwiklou.git phpdoc fixes --- diff --git a/includes/HTMLForm.php b/includes/HTMLForm.php index eb72179085..e1bb1234b3 100644 --- a/includes/HTMLForm.php +++ b/includes/HTMLForm.php @@ -26,7 +26,7 @@ class HTMLForm { $content . "\n\n"; } - /* + /** * @access private * @param string $varname Name of the checkbox. * @param boolean $checked Set true to check the box (default False). @@ -39,7 +39,7 @@ class HTMLForm { "\n"; } - /* + /** * @access private * @param string $varname Name of the textbox. * @param string $value Optional value (default empty) @@ -51,7 +51,7 @@ class HTMLForm { "\n"; } - /* + /** * @access private * @param string $varname Name of the radiobox. * @param array $fields Various fields. @@ -65,7 +65,7 @@ class HTMLForm { return $this->fieldset( $this->mName.'-'.$varname, $s ); } - /* + /** * @access private * @param string $varname Name of the textareabox. * @param string $value Optional value (default empty) @@ -77,7 +77,7 @@ class HTMLForm { "\n"; } - /* + /** * @access private * @param string $varname Name of the arraybox. * @param integer $size Optional size of the textarea (default 20) diff --git a/includes/Parser.php b/includes/Parser.php index f04c37140e..0a19fb0176 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -1,11 +1,11 @@