@@ -, +, @@ article requests --- mainpage.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/mainpage.pl +++ a/mainpage.pl @@ -89,7 +89,7 @@ my $pending_borrower_modifications = Koha::Patron::Modifications->pending_count( my $pending_discharge_requests = Koha::Patron::Discharge::count({ pending => 1 }); my $pending_article_requests = Koha::ArticleRequests->search_limited( { - status => Koha::ArticleRequest::Status::Pending, + status => Koha::ArticleRequest::Status::Requested, $branch ? ( 'me.branchcode' => $branch ) : (), } )->count; --