View | Details | Raw Unified | Return to bug 20447
Collapse All | Expand All

(-)a/Koha/Item.pm (-1 / +1 lines)
Lines 382-387 Return the holdings record of this item Link Here
382
sub holding {
382
sub holding {
383
    my ( $self ) = @_;
383
    my ( $self ) = @_;
384
    my $holding_rs = $self->_result->holding;
384
    my $holding_rs = $self->_result->holding;
385
    return unless $holding_rs;
385
    return Koha::Holding->_new_from_dbic( $holding_rs );
386
    return Koha::Holding->_new_from_dbic( $holding_rs );
386
}
387
}
387
388
388
- 

Return to bug 20447