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

(-)a/Koha/CirculationRules.pm (-2 / +1 lines)
Lines 425-431 sub article_requestable_rules { Link Here
425
425
426
    return if !C4::Context->preference('ArticleRequests');
426
    return if !C4::Context->preference('ArticleRequests');
427
    return $class->search({
427
    return $class->search({
428
        $category ? ( categorycode => [ $category, '*' ] ) : (),
428
        $category ? ( categorycode => [ $category, undef ] ) : (),
429
        rule_name => 'article_requests',
429
        rule_name => 'article_requests',
430
        rule_value => { '!=' => 'no' },
430
        rule_value => { '!=' => 'no' },
431
    });
431
    });
432
- 

Return to bug 18936