@@ -, +, @@ --- Koha/ArticleRequest.pm | 1 - Koha/ArticleRequests.pm | 2 +- Koha/Patron.pm | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) --- a/Koha/ArticleRequest.pm +++ a/Koha/ArticleRequest.pm @@ -26,7 +26,6 @@ use Koha::Patrons; use Koha::Biblios; use Koha::Items; use Koha::Libraries; -use Koha::ArticleRequest::Status; use Koha::DateUtils qw(dt_from_string); use base qw(Koha::Object); --- a/Koha/ArticleRequests.pm +++ a/Koha/ArticleRequests.pm @@ -23,8 +23,8 @@ use Carp; use Koha::Database; -use Koha::ArticleRequest; use Koha::ArticleRequest::Status; +use Koha::ArticleRequest; use base qw(Koha::Objects); --- a/Koha/Patron.pm +++ a/Koha/Patron.pm @@ -28,6 +28,7 @@ use Unicode::Normalize; use C4::Context; use C4::Log; use Koha::Account; +use Koha::ArticleRequests; use Koha::AuthUtils; use Koha::Checkouts; use Koha::Club::Enrollments; --