Index: trunk/phase3/includes/HTMLForm.php |
— | — | @@ -55,7 +55,7 @@ |
56 | 56 | */ |
57 | 57 | class HTMLForm extends ContextSource { |
58 | 58 | |
59 | | - # A mapping of 'type' inputs onto standard HTMLFormField subclasses |
| 59 | + // A mapping of 'type' inputs onto standard HTMLFormField subclasses |
60 | 60 | static $typeMappings = array( |
61 | 61 | 'text' => 'HTMLTextField', |
62 | 62 | 'textarea' => 'HTMLTextAreaField', |
— | — | @@ -73,9 +73,9 @@ |
74 | 74 | 'hidden' => 'HTMLHiddenField', |
75 | 75 | 'edittools' => 'HTMLEditTools', |
76 | 76 | |
77 | | - # HTMLTextField will output the correct type="" attribute automagically. |
78 | | - # There are about four zillion other HTML5 input types, like url, but |
79 | | - # we don't use those at the moment, so no point in adding all of them. |
| 77 | + // HTMLTextField will output the correct type="" attribute automagically. |
| 78 | + // There are about four zillion other HTML5 input types, like url, but |
| 79 | + // we don't use those at the moment, so no point in adding all of them. |
80 | 80 | 'email' => 'HTMLTextField', |
81 | 81 | 'password' => 'HTMLTextField', |
82 | 82 | ); |