From f38cb0feb0b57c7937723bf6c90c78957c5dcbbd Mon Sep 17 00:00:00 2001 From: mrbluesky Date: Fri, 13 Jan 2012 22:19:01 +0000 Subject: [PATCH] Fixing comments Using shell style comments here stops Doxygen from processing the rest of the comments. See http://svn.wikimedia.org/doc/classHTMLForm.html --- includes/HTMLForm.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/includes/HTMLForm.php b/includes/HTMLForm.php index 7751deff63..33a702805a 100644 --- a/includes/HTMLForm.php +++ b/includes/HTMLForm.php @@ -55,7 +55,7 @@ */ class HTMLForm extends ContextSource { - # A mapping of 'type' inputs onto standard HTMLFormField subclasses + // A mapping of 'type' inputs onto standard HTMLFormField subclasses static $typeMappings = array( 'text' => 'HTMLTextField', 'textarea' => 'HTMLTextAreaField', @@ -73,9 +73,9 @@ class HTMLForm extends ContextSource { 'hidden' => 'HTMLHiddenField', 'edittools' => 'HTMLEditTools', - # HTMLTextField will output the correct type="" attribute automagically. - # There are about four zillion other HTML5 input types, like url, but - # we don't use those at the moment, so no point in adding all of them. + // HTMLTextField will output the correct type="" attribute automagically. + // There are about four zillion other HTML5 input types, like url, but + // we don't use those at the moment, so no point in adding all of them. 'email' => 'HTMLTextField', 'password' => 'HTMLTextField', ); -- 2.20.1