@@ -, +, @@ --- Koha/ArticleRequest.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- a/Koha/ArticleRequest.pm +++ a/Koha/ArticleRequest.pm @@ -200,12 +200,12 @@ will have notifications sent. sub store { my ($self) = @_; - if ( $self->in_storage ) { - return $self->SUPER::store; - } else { + + if ( !$self->in_storage ) { $self->created_on( dt_from_string() ); - return $self->SUPER::store; } + + return $self->SUPER::store; } =head2 Internal methods --