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

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

Return to bug 20447