From feb72b4162e0369a110dee9c4c60318f0c6aed7e Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Fri, 4 Mar 2005 08:41:28 +0000 Subject: [PATCH] phpdoc fixes --- includes/HTMLForm.php | 10 +++++----- includes/Parser.php | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) 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 @@