summaryrefslogtreecommitdiffstats
path: root/extra
diff options
context:
space:
mode:
authorNicolas Chuche <nicolas.chuche@barna.be>2008-08-31 12:11:49 +0000
committerNicolas Chuche <nicolas.chuche@barna.be>2008-08-31 12:11:49 +0000
commit25b4139028696d4f4fb057f598a771aca52b7afe (patch)
tree7c923af946ef1860b9b8a80b807a628990c614f7 /extra
parented349ca9420cf3f6b794f2b7d408a6ee3386dbf8 (diff)
downloadredmine-25b4139028696d4f4fb057f598a771aca52b7afe.tar.gz
redmine-25b4139028696d4f4fb057f598a771aca52b7afe.zip
bug in read only access handling
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1776 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'extra')
-rw-r--r--extra/svn/Redmine.pm2
1 files changed, 1 insertions, 1 deletions
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);