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

(-)a/Koha/ArticleRequest.pm (-5 / +4 lines)
Lines 200-211 will have notifications sent. Link Here
200
200
201
sub store {
201
sub store {
202
    my ($self) = @_;
202
    my ($self) = @_;
203
    if ( $self->in_storage ) {
203
204
        return $self->SUPER::store;
204
    if ( !$self->in_storage ) {
205
    } else {
206
        $self->created_on( dt_from_string() );
205
        $self->created_on( dt_from_string() );
207
        return $self->SUPER::store;
208
    }
206
    }
207
208
    return $self->SUPER::store;
209
}
209
}
210
210
211
=head2 Internal methods
211
=head2 Internal methods
212
- 

Return to bug 29182