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

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

Return to bug 36197