@@ -, +, @@ KohaAuthorisedValues and AuthorisedValues - Followup Mark single item not for loan and try to check it out. Check item not for loan status shows up correctly in message: Item is normally not for loan (Staff Collection). Check out anyway? Try to check out your not for loan item again. Message has changed, but not for loan status should still show: Item not for loan (Staff Collection). Check damaged status shows correctly in list of checkouts. Check lost status shows up correctly in message: This item has been lost with a status of "Lange überfällig (Verloren)". up correctly on the suggestion page. for loan, damaged, etc). Requires follow-up patch to be applied. up in the patron account in OPAC correctly. --- .../prog/en/modules/circ/view_holdsqueue.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt @@ -1,5 +1,5 @@ [% USE ItemTypes %] -[% USE KohaAuthorisedValues %] +[% USE AuthorisedValues %] [% INCLUDE 'doc-head-open.inc' %] Koha › Circulation › Holds queue [% INCLUDE 'doc-head-close.inc' %] @@ -77,7 +77,7 @@ $(document).ready(function() { [% IF ( itemsloo.size ) %][% itemsloo.size %][% END %] [% IF ( itemsloo.isbn ) %]ISBN: [% itemsloo.isbn %][% END %]

- [% KohaAuthorisedValues.GetByCode( 'CCODE', itemsloo.ccode ) %] + [% AuthorisedValues.GetByCode( 'CCODE', itemsloo.ccode ) %] [% ItemTypes.GetDescription( itemsloo.itype ) %] [% itemsloo.location %] [% itemsloo.itemcallnumber %] [% itemsloo.copynumber %] --