From 1c9bad83e0057dcb4c562b54a753a4e6d74fb6f4 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 24 Oct 2013 15:28:42 +0200 Subject: [PATCH] Bug 11131: Authority search does not display summary while searching by all auth types The summary is built using the authtypecode selected from the interface. So when a search is launch on all auth types, the summary is not correctly built by the BuildSummary routine. It should get the authtypecode from the authority (call to GetAuthTypeCode). --- C4/AuthoritiesMarc.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/AuthoritiesMarc.pm b/C4/AuthoritiesMarc.pm index 7443f36..a22190b 100644 --- a/C4/AuthoritiesMarc.pm +++ b/C4/AuthoritiesMarc.pm @@ -275,7 +275,7 @@ sub SearchAuthorities { $newline{authid} = $authid; if ( !$skipmetadata ) { my $summary = - BuildSummary( $authrecord, $authid, $authtypecode ); + BuildSummary( $authrecord, $authid, GetAuthTypeCode($authid) ); my $query_auth_tag = "SELECT auth_tag_to_report FROM auth_types WHERE authtypecode=?"; my $sth = $dbh->prepare($query_auth_tag); -- 1.7.10.4