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

(-)a/Koha/Patron/Category.pm (-1 / +6 lines)
Lines 37-42 Koha::Patron;;Category - Koha Patron;;Category Object class Link Here
37
37
38
sub store {
38
sub store {
39
    my ( $self ) = @_;
39
    my ( $self ) = @_;
40
    $self->dateofbirthrequired(undef)
41
        if not defined $self->dateofbirthrequired
42
            or $self->dateofbirthrequired eq '';
43
    $self->upperagelimit(undef)
44
        if not defined $self->upperagelimit
45
            or $self->upperagelimit eq '';
40
    $self->checkprevcheckout('inherit')
46
    $self->checkprevcheckout('inherit')
41
        unless defined $self->checkprevcheckout;
47
        unless defined $self->checkprevcheckout;
42
    return $self->SUPER::store;
48
    return $self->SUPER::store;
43
- 

Return to bug 14637