diff options
author | bbaetz%student.usyd.edu.au <> | 2002-07-31 07:43:50 +0200 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2002-07-31 07:43:50 +0200 |
commit | 4329499747e5cd24283db29e90d8f8b609b7324c (patch) | |
tree | 6c0e7c71ab85fc06d945791fd226d77c27e308b0 | |
parent | ff8c2c11f79f69e8f6ac1944cce7dd41fa6660ff (diff) | |
download | bugzilla-4329499747e5cd24283db29e90d8f8b609b7324c.tar.gz bugzilla-4329499747e5cd24283db29e90d8f8b609b7324c.tar.xz |
Bug 160204 - search/knob.html.tmpl: script type missing, space missing
Patch by burnus@gmx.de (Tobias Burnus), r=bbaetz x2
-rw-r--r-- | template/en/default/search/knob.html.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/template/en/default/search/knob.html.tmpl b/template/en/default/search/knob.html.tmpl index 32ee2d2d1..6bbd390c0 100644 --- a/template/en/default/search/knob.html.tmpl +++ b/template/en/default/search/knob.html.tmpl @@ -33,7 +33,7 @@ [% IF NOT userid %] <input type="hidden" name="cmdtype" value="doit"> [% ELSE %] - <script> <!-- + <script type="text/javascript"> <!-- function remCheckboxChanged() { if (document.queryform.remember.checked == true) { document.queryform.remtype[0].disabled = false; @@ -68,7 +68,7 @@ <table> <tr> <td> - <input type="radio"id="cmdtype-doit" + <input type="radio" id="cmdtype-doit" name="cmdtype" value="doit" checked="checked"> <label for="cmdtype-doit">Run this search</label> </td> @@ -121,7 +121,7 @@ </tr> </table> - <script> <!-- + <script type="text/javascript"> <!-- remCheckboxChanged(); remTypeChanged(); // --> |