Bug 13618: Fix last occurrences recently introduced to master
Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Brendan Gallagher brendan@bywatersolutions.com
This commit is contained in:
parent
ae5b98020a
commit
bb417b256b
4 changed files with 8 additions and 8 deletions
|
@ -129,7 +129,7 @@ $(document).ready(function() {
|
|||
[% END %]
|
||||
<td>[% checkout_info.barcode %]</td>
|
||||
<td>
|
||||
<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% checkout_info.item.biblionumber %]&type=intra"><strong>[% checkout_info.item.title |html %][% FOREACH subtitl IN checkout_info.item.subtitle %] [% subtitl.subfield %][% END %]</strong></a>[% IF checkout_info.item.author %], by [% checkout_info.item.author %][% END %][% IF ( checkout_info.itme.itemnotes ) %]- <span class="circ-hlt">[% checkout_info.item.itemnotes %]</span>[% END %] <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% checkout_info.item.biblionumber %]&itemnumber=[% checkout_info.item.itemnumber %]#item[% checkout_info.item.itemnumber %]">[% checkout_info.item.barcode %]</a>
|
||||
<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% checkout_info.item.biblionumber %]&type=intra"><strong>[% checkout_info.item.title %][% FOREACH subtitl IN checkout_info.item.subtitle %] [% subtitl.subfield %][% END %]</strong></a>[% IF checkout_info.item.author %], by [% checkout_info.item.author %][% END %][% IF ( checkout_info.itme.itemnotes ) %]- <span class="circ-hlt">[% checkout_info.item.itemnotes %]</span>[% END %] <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% checkout_info.item.biblionumber %]&itemnumber=[% checkout_info.item.itemnumber %]#item[% checkout_info.item.itemnumber %]">[% checkout_info.item.barcode %]</a>
|
||||
</td>
|
||||
<td>
|
||||
[% IF checkout_info.NEEDSCONFIRMATION %]
|
||||
|
@ -255,7 +255,7 @@ $(document).ready(function() {
|
|||
Too many checked out.
|
||||
[% END %]
|
||||
[% IF checkout_info.UNKNOWN_BARCODE %]
|
||||
<li>The barcode was not found [% checkout_info.barcode |html %]
|
||||
<li>The barcode was not found [% checkout_info.barcode %]
|
||||
[% END %]
|
||||
[% IF checkout_info.DEBT %]
|
||||
The patron has a debt of [% checkout_info.DEBT %] <!-- Need debt_confirmed -->
|
||||
|
|
|
@ -392,11 +392,11 @@
|
|||
</li>
|
||||
<li>
|
||||
<label for="barcode_height_scale">Scale height (relative to card): </label>
|
||||
<input type="text" name="barcode_height_scale" id="barcode_height_scale" size="2" value="[% barcode_height_scale |html %]" />
|
||||
<input type="text" name="barcode_height_scale" id="barcode_height_scale" size="2" value="[% barcode_height_scale %]" />
|
||||
</li>
|
||||
<li>
|
||||
<label for="barcode_width_scale">Scale width (relative to card): </label>
|
||||
<input type="text" name="barcode_width_scale" id="barcode_width_scale" size="2" value="[% barcode_width_scale |html %]" />
|
||||
<input type="text" name="barcode_width_scale" id="barcode_width_scale" size="2" value="[% barcode_width_scale %]" />
|
||||
</li>
|
||||
<li>
|
||||
<label for="barcode_type">Barcode type: </label>
|
||||
|
|
|
@ -126,7 +126,7 @@
|
|||
<ol>
|
||||
<li>
|
||||
<label for="name" class="required">Name: </label>
|
||||
<input type="text" name="name" id="name" value="[% field.name | html %]" />
|
||||
<input type="text" name="name" id="name" value="[% field.name %]" />
|
||||
</li>
|
||||
<li>
|
||||
<label for="av">Authorised value category: </label>
|
||||
|
@ -143,7 +143,7 @@
|
|||
</li>
|
||||
<li>
|
||||
<label for="marcfield">Marc field: </label>
|
||||
<input type="text" name="marcfield" id="marcfield" value="[% field.marcfield| html %]" />
|
||||
<input type="text" name="marcfield" id="marcfield" value="[% field.marcfield %]" />
|
||||
</li>
|
||||
<li>
|
||||
<label for="searchable">Searchable: </label>
|
||||
|
|
|
@ -751,7 +751,7 @@ $(document).ready(function(){
|
|||
[% SET number_of_private_shelves = 0 %]
|
||||
[% FOREACH s IN add_to_some_private_shelves %]
|
||||
[% IF shelfnumber != s.shelfnumber %]
|
||||
param1 += "<option id=\"s[% s.shelfnumber %]\" value=\"addtolist\">[% s.shelfname |html %]<\/option>";
|
||||
param1 += "<option id=\"s[% s.shelfnumber %]\" value=\"addtolist\">[% s.shelfname %]<\/option>";
|
||||
[% SET number_of_private_shelves = number_of_private_shelves + 1 %]
|
||||
[% IF number_of_private_shelves == 10 %][% LAST %][% END %]
|
||||
[% END %]
|
||||
|
@ -763,7 +763,7 @@ $(document).ready(function(){
|
|||
[% SET number_of_public_shelves = 0 %]
|
||||
[% FOREACH s IN add_to_some_public_shelves %]
|
||||
[% IF shelfnumber != s.shelfnumber %]
|
||||
param1 += "<option id=\"s[% s.shelfnumber %]\" value=\"addtolist\">[% s.shelfname |html %]<\/option>";
|
||||
param1 += "<option id=\"s[% s.shelfnumber %]\" value=\"addtolist\">[% s.shelfname %]<\/option>";
|
||||
[% SET number_of_public_shelves = number_of_public_shelves + 1 %]
|
||||
[% IF number_of_public_shelves == 10 %][% LAST %][% END %]
|
||||
[% END %]
|
||||
|
|
Loading…
Reference in a new issue