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

(-)a/Koha/REST/V1/Illrequests.pm (-2 / +1 lines)
Lines 56-62 sub list { Link Here
56
    }
56
    }
57
57
58
    # Get the pipe-separated string of hidden ILL statuses
58
    # Get the pipe-separated string of hidden ILL statuses
59
    my $hidden_statuses_string = C4::Context->preference('ILLHiddenRequestStatuses');
59
    my $hidden_statuses_string = C4::Context->preference('ILLHiddenRequestStatuses') // q{};
60
    # Turn into arrayref
60
    # Turn into arrayref
61
    my $hidden_statuses = [ split /\|/, $hidden_statuses_string ];
61
    my $hidden_statuses = [ split /\|/, $hidden_statuses_string ];
62
62
63
- 

Return to bug 23391