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

(-)a/Koha/REST/V1/Checkouts.pm (-2 / +1 lines)
Lines 199-205 sub delete_history { Link Here
199
199
200
    unless ($patrons->count) {
200
    unless ($patrons->count) {
201
        return $c->render( status => 404, openapi => {
201
        return $c->render( status => 404, openapi => {
202
            error => "Patron doesn't exist"
202
            error => "Patron not found"
203
        });
203
        });
204
    }
204
    }
205
205
206
- 

Return to bug 18795