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

(-)a/Koha/Middleware/CSRF.pm (-1 / +3 lines)
Lines 77-82 sub call { Link Here
77
            }
77
            }
78
        }
78
        }
79
    }
79
    }
80
    elsif ( !exists $stateless_methods{$request_method} && !exists $stateful_methods{$request_method} ) {
81
        $error = sprintf "unknown or unsupported method %s", $request_method;
82
    }
80
83
81
    if ($error) {
84
    if ($error) {
82
85
83
- 

Return to bug 36863