@@ -, +, @@ Use the $biblio_rs variable In case of Koha::Object you can call new_from_dbic directly, however, it fails for Koha::Objects so using an intermediary variable should be done for consistency --- Koha/Item.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/Koha/Item.pm +++ a/Koha/Item.pm @@ -88,7 +88,7 @@ Return the bibliographic record of this item sub biblio { my ( $self ) = @_; my $biblio_rs = $self->_result->biblio; - return Koha::Biblio->_new_from_dbic( $self->_result->biblio ); + return Koha::Biblio->_new_from_dbic( $biblio_rs ); } =head3 get_transfer --