diff options
author | Francisco Donalisio <francsd@linux.vnet.ibm.com> | 2012-02-14 23:12:59 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-02-14 23:12:59 +0100 |
commit | ea2a257cbfeae387d732447a4339e8bc782ec5b8 (patch) | |
tree | 4f3e0c98617f52d5d0607bfeb39fde4c9bcd4c7e /template | |
parent | eb0c8518afb8eb8a5396f75d0909616295ff3ef3 (diff) | |
download | bugzilla-ea2a257cbfeae387d732447a4339e8bc782ec5b8.tar.gz bugzilla-ea2a257cbfeae387d732447a4339e8bc782ec5b8.tar.xz |
Bug 641869: Make quicksearch help page compliant with WAI
r=timello a=LpSolit
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/pages/quicksearch.html.tmpl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/template/en/default/pages/quicksearch.html.tmpl b/template/en/default/pages/quicksearch.html.tmpl index f9fdce07b..50e6cb962 100644 --- a/template/en/default/pages/quicksearch.html.tmpl +++ b/template/en/default/pages/quicksearch.html.tmpl @@ -16,13 +16,14 @@ [% USE Bugzilla %] -<p>Type in one or more words (or pieces of words) to search for:</p> +<p><label for="quicksearch">Type in one or more words (or pieces of words) + to search for:</label></p> <form name="f" action="buglist.cgi" method="get" onsubmit="if (this.quicksearch.value == '') { alert('Please enter one or more search terms first.'); return false; } return true;"> - <input type="text" size="40" name="quicksearch"> + <input type="text" size="40" name="quicksearch" id="quicksearch"> <input type="submit" value="Search" id="find"> </form> |