@@ -, +, @@ Can't use string ("HASH(0xbc6c{30)") as a HASH ref while "strict refs" in use at /usr/share/koha/lib/C4/AuthoritiesMarc.pm line 363. those headings. --- C4/AuthoritiesMarc.pm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) --- a/C4/AuthoritiesMarc.pm +++ a/C4/AuthoritiesMarc.pm @@ -359,8 +359,10 @@ sub SearchAuthorities { } } my $thisauthtype = GetAuthType(GetAuthTypeCode($authid)); - $thisauthtype |= GetAuthType($authtypecode) if $authtypecode; - $newline{authtype} = defined ($thisauthtype) ? + unless (defined $thisauthtype) { + $thisauthtype = GetAuthType($authtypecode) if $authtypecode; + } + $newline{authtype} = defined($thisauthtype) ? $thisauthtype->{'authtypetext'} : ''; $newline{summary} = $summary; $newline{even} = $counter % 2; --