]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 160204 - search/knob.html.tmpl: script type missing, space missing
authorbbaetz%student.usyd.edu.au <>
Wed, 31 Jul 2002 05:43:50 +0000 (05:43 +0000)
committerbbaetz%student.usyd.edu.au <>
Wed, 31 Jul 2002 05:43:50 +0000 (05:43 +0000)
Patch by burnus@gmx.de (Tobias Burnus), r=bbaetz x2

template/en/default/search/knob.html.tmpl

index 32ee2d2d1b7de174ad7fffbe2c7fa32d48d3694b..6bbd390c04543fc5db81876657a28dda4cfa5f83 100644 (file)
@@ -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>
     </tr>
   </table>
   
-  <script> <!--
+  <script type="text/javascript"> <!--
     remCheckboxChanged();
     remTypeChanged(); 
     // -->