@@ -, +, @@ 1) Apply patch (restart_all) 2) Look up an item that has a shelving location with a description defined (opac description too). 3) Remove opac description from shelving location. Refresh opac-detail.pl and note that description fails back to the regular description. Refresh detail.pl and note no change. 4) Remove regular description from shelving location. Refresh opac-detail.pl and detail.pl. Note that both default to the shelving location code. 5) Remove the shelving location from the LOC table all together. Refresh opac-detail.pl and detail.pl. Note that both default to the requested shelving location code. --- Koha/Template/Plugin/AuthorisedValues.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- a/Koha/Template/Plugin/AuthorisedValues.pm +++ a/Koha/Template/Plugin/AuthorisedValues.pm @@ -85,8 +85,9 @@ sub GetDescriptionByKohaField { ? $params->{opac} ? $av->{opac_description} : $av->{lib} - : ''; # Maybe we should return $params->{authorised_value}? - + : $params->{authorised_value} + ? $params->{authorised_value} + : '' } 1; --