Markup correction. You can't embed a <!-- TMPL_IF --> inside an HTML tag because it causes problems for the translation script.
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
This commit is contained in:
parent
5996c38fbd
commit
904a148509
2 changed files with 3 additions and 3 deletions
|
@ -186,7 +186,7 @@
|
|||
<th> </th>
|
||||
</tr>
|
||||
<!-- TMPL_LOOP NAME="loop" -->
|
||||
<tr<!-- TMPL_UNLESS NAME="__odd__" --> class="highlight"<!-- /TMPL_UNLESS -->>
|
||||
<!-- TMPL_IF NAME="__odd__" --><tr><!-- TMPL_ELSE --><tr class="highlight"><!-- /TMPL_IF -->
|
||||
<td><!-- TMPL_VAR NAME="printername" --></td>
|
||||
<td><!-- TMPL_VAR NAME="printqueue" --></td>
|
||||
<td><!-- TMPL_VAR NAME="printtype" --></td>
|
||||
|
|
|
@ -145,7 +145,7 @@ $(window).load(function() {
|
|||
<th>Count</th>
|
||||
</tr>
|
||||
<!-- TMPL_LOOP NAME="SEARCH_RESULTS" -->
|
||||
<tr<!-- TMPL_UNLESS name="__odd__" --> class="highlight"<!-- /TMPL_UNLESS -->>
|
||||
<!-- TMPL_IF NAME="__odd__" --><tr><!-- TMPL_ELSE --><tr class="highlight"><!-- /TMPL_IF -->
|
||||
<td>
|
||||
<a href="/cgi-bin/koha/catalogue/search.pl?q=<!-- TMPL_VAR NAME="scan_use" escape="url" -->"<!-- TMPL_VAR NAME="title_nospan" -->""><!-- TMPL_VAR NAME="title" --></a>
|
||||
</td>
|
||||
|
@ -241,7 +241,7 @@ $(window).load(function() {
|
|||
</tr>
|
||||
<!-- Actual Search Results -->
|
||||
<!-- TMPL_LOOP NAME="SEARCH_RESULTS" -->
|
||||
<tr<!-- TMPL_UNLESS NAME="__odd__" --> class="highlight"<!-- /TMPL_UNLESS -->>
|
||||
<!-- TMPL_IF NAME="__odd__" --><tr><!-- TMPL_ELSE --><tr class="highlight"><!-- /TMPL_IF -->
|
||||
<!-- TMPL_IF NAME="AmazonContent" -->
|
||||
<td>
|
||||
<a class="p1" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" ESCAPE="URL" -->">
|
||||
|
|
Loading…
Reference in a new issue