git-svn-id: http://svn.redmine.org/redmine/branches/2.6-stable@14916
e93f8b46-1217-0410-a6f0-
8f06a7374b81
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
}