> +                               <li><label for="manuallist"> Manual 
> history:</label> <input type="checkbox" name="manualhist" id="manuallist" 
> value="1" <!-- TMPL_IF name="manualhistory" -->checked<!-- /TMPL_IF --> 
> /></li>

Embedding a TMPL_IF inside an HTML tag will break the translation
script. It's inconvenient, but you have to do it like this:

<!-- TMPL_IF name="manualhistory" -->
  <input type="checkbox" name="manualhist" id="manuallist" value="1"
checked="checked" />
<!-- TMPL_ELSE -->
  <input type="checkbox" name="manualhist" id="manuallist" value="1" />
<!-- /TMPL_IF -->

Also note that for XHTML compliance you have to use
'checked="checked"' instead of just 'checked.'

  -- Owen

-- 
Web Developer
Athens County Public Libraries
http://www.myacpl.org
_______________________________________________
Koha-patches mailing list
[email protected]
http://lists.koha.org/mailman/listinfo/koha-patches

Reply via email to