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

(-)a/Koha/Account/Line.pm (-2 / +1 lines)
Lines 52-58 Return the patron linked to this account line Link Here
52
52
53
sub patron {
53
sub patron {
54
    my ( $self ) = @_;
54
    my ( $self ) = @_;
55
    my $rs = $self->_result->borrowernumber;
55
    my $rs = $self->_result->patron;
56
    return unless $rs;
56
    return unless $rs;
57
    return Koha::Patron->_new_from_dbic( $rs );
57
    return Koha::Patron->_new_from_dbic( $rs );
58
}
58
}
59
- 

Return to bug 35074