@@ -, +, @@ should return code (not empty string) if value not found --- Koha/Template/Plugin/AuthorisedValues.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/Koha/Template/Plugin/AuthorisedValues.pm +++ a/Koha/Template/Plugin/AuthorisedValues.pm @@ -31,7 +31,7 @@ sub GetByCode { ? $opac ? $av->next->opac_description : $av->next->lib - : ''; + : $code; } sub Get { --