https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26611

ryszard....@gmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ryszard....@gmail.com

--- Comment #11 from ryszard....@gmail.com ---
Hello.
Solution to the problem in version 22.11 (it worked for me)

/C4/Matcher.pm

line ~~33

     remove_spaces
     upper_case
 );
+use C4::AuthoritiesMarc qw( GetAuthority );

 =head1 NAME

Line ~~703

foreach my $result (@$authresults) {
             my $id = $result->{authid};
- my $target_record = Koha::Authorities->find( $id )->record;
+ my $target_record = GetAuthority($id);
             $matches->{$id}->{score} += $matchpoint->{'score'};
             $matches->{$id}->{record} = $target_record;
            }

my first comment, sorry for the syntax

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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/

Reply via email to