From c44d7cc54fac9603db78bb73a0543a163cf18706 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Fri, 6 Jan 2017 11:21:10 +0100 Subject: [PATCH] Bug 17736: [Follow-up] Resolve inherited AUTOLOAD for non-method errors Content-Type: text/plain; charset=utf-8 Like: Use of inherited AUTOLOAD for non-method Koha::Biblio::GetMarcBiblio() is deprecated at /usr/share/koha/masterclone/Koha/Biblio.pm line 60. Use of inherited AUTOLOAD for non-method Koha::Biblio::GetRecordValue() is deprecated at /usr/share/koha/masterclone/Koha/Biblio.pm line 60. Resolved by not importing them but fully qualifying them. Signed-off-by: Marcel de Rooy --- Koha/Biblio.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Koha/Biblio.pm b/Koha/Biblio.pm index 7c86d5a..63b17a5 100644 --- a/Koha/Biblio.pm +++ b/Koha/Biblio.pm @@ -21,7 +21,7 @@ use Modern::Perl; use Carp; -use C4::Biblio qw( GetRecordValue GetMarcBiblio GetFrameworkCode ); +use C4::Biblio qw(); use Koha::Database; use Koha::DateUtils qw( dt_from_string ); @@ -57,7 +57,7 @@ Keyword to MARC mapping for subtitle must be set for this method to return any p sub subtitles { my ( $self ) = @_; - return map { $_->{subfield} } @{ GetRecordValue( 'subtitle', GetMarcBiblio( $self->id ), $self->frameworkcode ) }; + return map { $_->{subfield} } @{ C4::Biblio::GetRecordValue( 'subtitle', C4::Biblio::GetMarcBiblio( $self->id ), $self->frameworkcode ) }; } =head3 can_article_request -- 2.1.4