@@ -, +, @@ the authority --- cataloguing/z3950_auth_search.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/cataloguing/z3950_auth_search.pl +++ a/cataloguing/z3950_auth_search.pl @@ -35,8 +35,8 @@ my $marcflavour = C4::Context->preference("marcflavour"); my $error = $input->param('error'); my $authid = $input->param('authid') || 0; -my $record = GetAuthority($authid); -my $authobj = Koha::Authorities->find($authid); +my $authority = Koha::Authorities->find($authid); +my $record = $authority->record; my $authtypecode = $authobj ? $authobj->authtypecode : ''; my $authority_type = Koha::Authority::Types->find($authtypecode); my $authtag = $authority_type->auth_tag_to_report; --