diff options
Diffstat (limited to 'extra')
-rw-r--r-- | extra/svn/Redmine.pm | 6 |
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 } |