diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2012-08-07 23:26:03 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-08-07 23:26:03 +0200 |
commit | eb04bb66cee35f39d546403ea4f777b43452cd4d (patch) | |
tree | 3520e7b62b7c3df817ad9b812a48a9ab2429212c /template | |
parent | dd338c897e276ae9814f84205724f85926f48bbb (diff) | |
download | bugzilla-eb04bb66cee35f39d546403ea4f777b43452cd4d.tar.gz bugzilla-eb04bb66cee35f39d546403ea4f777b43452cd4d.tar.xz |
HTML pages no longer passed HTML4 validation due to a duplicated ID, see bug 730670
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/global/common-links.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/global/common-links.html.tmpl b/template/en/default/global/common-links.html.tmpl index 5af02afa6..800fd5932 100644 --- a/template/en/default/global/common-links.html.tmpl +++ b/template/en/default/global/common-links.html.tmpl @@ -21,10 +21,10 @@ onsubmit="if (this.quicksearch.value == '') { alert('Please enter one or more search terms first.'); return false; } return true;"> - <input type="hidden" id="no_redirect" name="no_redirect" value="0"> + <input type="hidden" id="no_redirect[% qs_suffix FILTER html %]" name="no_redirect" value="0"> <script type="text/javascript"> if (history && history.replaceState) { - var no_redirect = document.getElementById("no_redirect"); + var no_redirect = document.getElementById("no_redirect[% qs_suffix FILTER js %]"); no_redirect.value = 1; } </script> |