From 73c76e58269e95d5bc5e4e77fd6e5c1221500348 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 2 Jan 2018 13:08:00 -0300 Subject: [PATCH] Bug 18477: Use ->store to update the timestamp --- Koha/ArticleRequest.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/ArticleRequest.pm b/Koha/ArticleRequest.pm index f540b802da..33485a677e 100644 --- a/Koha/ArticleRequest.pm +++ b/Koha/ArticleRequest.pm @@ -49,7 +49,7 @@ sub open { my ($self) = @_; $self->status(Koha::ArticleRequest::Status::Pending); - $self->SUPER::store(); + $self->store(); $self->notify(); return $self; } -- 2.11.0