Commit 25b41390 authored by Nicolas Chuche's avatar Nicolas Chuche

bug in read only access handling

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1776 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent ed349ca9
......@@ -200,7 +200,7 @@ sub access_handler {
}
my $method = $r->method;
return OK if defined $read_only_methods{$method};
return OK unless defined $read_only_methods{$method};
my $project_id = get_project_identifier($r);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment