##// END OF EJS Templates
bug in read only access handling...
Nicolas Chuche -
r1775:25b413902869
parent child
Show More
@@ -200,7 +200,7 sub access_handler {
200 200 }
201 201
202 202 my $method = $r->method;
203 return OK if defined $read_only_methods{$method};
203 return OK unless defined $read_only_methods{$method};
204 204
205 205 my $project_id = get_project_identifier($r);
206 206
General Comments 0
You need to be logged in to leave comments. Login now