Bug 4173: Followup: put the lib into a variable
authorJonathan Druart <jonathan.druart@biblibre.com>
Wed, 25 Jul 2012 14:20:30 +0000 (16:20 +0200)
committerPaul Poulain <paul.poulain@biblibre.com>
Fri, 14 Sep 2012 14:37:19 +0000 (16:37 +0200)
Prevent 2 calls instead of 1

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
koha-tmpl/opac-tmpl/prog/en/includes/item-status.inc

index c456675..51c2e9f 100644 (file)
@@ -14,8 +14,9 @@
 [% ELSIF ( item.wthdrawn ) %]
     Item withdrawn
 [% ELSIF ( item.itemlost ) %]
-    [% IF KohaAuthorisedValues.GetByCode( 'LOST', item.itemlost, 1 ) %]
-        [% KohaAuthorisedValues.GetByCode( 'LOST', item.itemlost, 1 ) %]
+    [% av_lib_include = KohaAuthorisedValues.GetByCode( 'LOST', item.itemlost, 1 ) %]
+    [% IF ( av_lib_include ) %]
+        [% av_lib_include %]
     [% ELSE %]
         [% IF ( item.lostimageurl ) %]
             <img src="[% item.lostimageurl %]" alt="[% item.lostimagelabel %]" title="[% item.lostimagelabel %]">
@@ -32,8 +33,9 @@
 [% ELSIF ( item.notforloan_per_itemtype ) %]
     Not for loan [% IF ( item.restrictedopac ) %]<span class="restricted">([% item.restrictedopac %])</span>[% END %]
 [% ELSIF ( item.damaged ) %]
-    [% IF KohaAuthorisedValues.GetByCode( 'DAMAGED', item.damaged, 1 ) %]
-        [% KohaAuthorisedValues.GetByCode( 'DAMAGED', item.damaged, 1 ) %]
+    [% av_lib_include = KohaAuthorisedValues.GetByCode( 'DAMAGED', item.damaged, 1 ) %]
+    [% IF av_lib_include %]
+        [% av_lib_include %]
     [% ELSE %]
         Item damaged
     [% END %]