From: Tomas Cohen Arazi Date: Fri, 19 Apr 2019 14:29:49 +0000 (-0300) Subject: Bug 22696: (follow-up) Use new relationship for prefetching X-Git-Url: http://git.equinoxoli.org/?p=koha-equinox.git;a=commitdiff_plain;h=40ed0baba7f1156ba63d2a8ee095b40db66e13c8 Bug 22696: (follow-up) Use new relationship for prefetching Signed-off-by: Tomas Cohen Arazi Signed-off-by: Martin Renvoize Signed-off-by: Nick Clemens --- diff --git a/opac/opac-ISBDdetail.pl b/opac/opac-ISBDdetail.pl index 3fecc84..4ae6882 100755 --- a/opac/opac-ISBDdetail.pl +++ b/opac/opac-ISBDdetail.pl @@ -45,7 +45,6 @@ use C4::Auth; use C4::Context; use C4::Output; use CGI qw ( -utf8 ); -use MARC::Record; use C4::Biblio; use C4::Items; use C4::Reserves; @@ -78,7 +77,7 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( ); -my $biblio = Koha::Biblios->find( $biblionumber, { prefetch => [ 'biblio_metadatas' ] } ); +my $biblio = Koha::Biblios->find( $biblionumber, { prefetch => 'metadata' } ); my $patron = Koha::Patrons->find($loggedinuser); my $opachiddenitems_rules;