@@ -, +, @@ --- koha-tmpl/opac-tmpl/prog/en/includes/item-status.inc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) --- a/koha-tmpl/opac-tmpl/prog/en/includes/item-status.inc +++ a/koha-tmpl/opac-tmpl/prog/en/includes/item-status.inc @@ -14,12 +14,12 @@ [% ELSIF ( item.wthdrawn ) %] Item withdrawn [% ELSIF ( item.itemlost ) %] - [% av_lib_include = KohaAuthorisedValues.GetByCode( 'LOST', item.itemlost, 1 ) %] - [% IF ( av_lib_include ) %] - [% av_lib_include %] + [% IF ( item.lostimageurl ) %] + [% item.lostimagelabel %] [% ELSE %] - [% IF ( item.lostimageurl ) %] - [% item.lostimagelabel %] + [% av_lib_include = KohaAuthorisedValues.GetByCode( 'LOST', item.itemlost, 1 ) %] + [% IF ( av_lib_include ) %] + [% av_lib_include %] [% ELSE %] Item lost [% END %] --