From: mrbluesky Date: Fri, 13 Jan 2012 22:19:01 +0000 (+0000) Subject: Fixing comments X-Git-Tag: 1.31.0-rc.0~25293 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/password.php?a=commitdiff_plain;h=f38cb0feb0b57c7937723bf6c90c78957c5dcbbd;p=lhc%2Fweb%2Fwiklou.git Fixing comments Using shell style comments here stops Doxygen from processing the rest of the comments. See http://svn.wikimedia.org/doc/classHTMLForm.html --- 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', );