summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2015-12-04 12:47:42 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2015-12-04 12:47:42 +0000
commit5bade244d89e715ceedbbe814d1c126ac423ffda (patch)
treecdcc023611bf9e6367161f8696680bcb55f5f4dd
parent011d0afc52e1319327554c015f91ab8887166a7b (diff)
downloadredmine-5bade244d89e715ceedbbe814d1c126ac423ffda.tar.gz
redmine-5bade244d89e715ceedbbe814d1c126ac423ffda.zip
Merged r14883 (#16948).
git-svn-id: http://svn.redmine.org/redmine/branches/2.6-stable@14916 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--extra/svn/Redmine.pm6
1 files changed, 4 insertions, 2 deletions
diff --git a/extra/svn/Redmine.pm b/extra/svn/Redmine.pm
index 1ec057645..8b7fe158f 100644
--- a/extra/svn/Redmine.pm
+++ b/extra/svn/Redmine.pm
@@ -332,8 +332,10 @@ sub access_handler {
my $project_id = get_project_identifier($r);
- $r->set_handlers(PerlAuthenHandler => [\&OK])
- if is_public_project($project_id, $r) && anonymous_allowed_to_browse_repository($project_id, $r);
+ if (is_public_project($project_id, $r) && anonymous_allowed_to_browse_repository($project_id, $r)) {
+ $r->user("");
+ $r->set_handlers(PerlAuthenHandler => [\&OK]);
+ }
return OK
}