r109220 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r109219‎ | r109220 | r109221 >
Date:21:37, 17 January 2012
Author:hashar
Status:ok
Tags:
Comment:
Fix trivial HTML issues

* <form> requires an action
* 'for' attribute of a <label> refers to an <input> id. Not name.
Modified paths:
  • /trunk/extensions/CongressLookup/SpecialCongressLookup.php (modified) (history)

Diff [purge]

Index: trunk/extensions/CongressLookup/SpecialCongressLookup.php
@@ -245,9 +245,9 @@
246246 $htmlOut = <<<HTML
247247 <h4>Contact your representatives</h4>
248248 <div class="sopaActionDiv">
249 - <form action="" method="GET">
 249+ <form action="." method="GET">
250250 <label for="zip">Your zip code:</label>
251 - <input type="text" maxlength="10" size="5" name="zip"/>
 251+ <input type="text" maxlength="10" size="5" name="zip" id="zip"/>
252252 <input type="submit" value="Look up" name="submit"/>
253253 </form>
254254 </div>

Follow-up revisions

RevisionCommit summaryAuthorDate
r109221Fix form action from r109220hashar21:41, 17 January 2012

Status & tagging log