Bug 17736: [Follow-up] Resolve inherited AUTOLOAD for non-method errors

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 <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
This commit is contained in:
Marcel de Rooy 2017-01-06 11:21:10 +01:00 committed by Kyle M Hall
parent 24d6de661a
commit ecf5dcdbfa

View file

@ -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 );
@ -58,7 +58,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