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

(-)a/mainpage.pl (-2 / +1 lines)
Lines 71-77 my $pending_discharge_requests = Koha::Patron::Discharge::count({ pending => 1 } Link Here
71
my $pending_article_requests = Koha::ArticleRequests->search_limited(
71
my $pending_article_requests = Koha::ArticleRequests->search_limited(
72
    {
72
    {
73
        status => Koha::ArticleRequest::Status::Pending,
73
        status => Koha::ArticleRequest::Status::Pending,
74
        $branch ? ( branchcode => $branch ) : (),
74
        $branch ? ( 'me.branchcode' => $branch ) : (),
75
    }
75
    }
76
)->count;
76
)->count;
77
77
78
- 

Return to bug 21907