http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13150
--- Comment #1 from Kyle M Hall <[email protected]> --- This was caused by memcached needing a restart on this particular server. However, this could be solved in the code with a bit more testing: diff --git a/C4/Biblio.pm b/C4/Biblio.pm index 61e4c3b..17afeaf 100644 --- a/C4/Biblio.pm +++ b/C4/Biblio.pm @@ -1616,7 +1616,7 @@ sub GetAuthorisedValueDesc { if ( !$category ) { - return $value unless defined $tagslib->{$tag}->{$subfield}->{'authorised_value'}; + return $value unless $tagslib && defined $tagslib->{$tag}->{$subfield}->{'authorised_value'}; #---- branch if ( $tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "branches" ) { -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
