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

(-)a/Koha/ILL/Backend/Standard.pm (-2 / +3 lines)
Lines 128-134 sub capabilities { Link Here
128
        provides_batch_requests => sub { return 1; },
128
        provides_batch_requests => sub { return 1; },
129
129
130
        # We can create ILL requests with data passed from the API
130
        # We can create ILL requests with data passed from the API
131
        create_api => sub { $self->create_api(@_) }
131
        create_api => sub { $self->create_api(@_) },
132
133
        opac_unauthenticated_ill_requests => sub { return 1; }
132
    };
134
    };
133
    return $capabilities->{$name};
135
    return $capabilities->{$name};
134
}
136
}
135
- 

Return to bug 36197