From: Nicolas Chuche Date: Sun, 31 Aug 2008 12:11:49 +0000 (+0000) Subject: bug in read only access handling X-Git-Tag: 0.8.0-RC1~265 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=25b4139028696d4f4fb057f598a771aca52b7afe;p=redmine.git bug in read only access handling git-svn-id: http://redmine.rubyforge.org/svn/trunk@1776 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/extra/svn/Redmine.pm b/extra/svn/Redmine.pm index 09a85fb09..2619196c7 100644 --- a/extra/svn/Redmine.pm +++ b/extra/svn/Redmine.pm @@ -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);