Merged r14883 (#16948).

git-svn-id: http://svn.redmine.org/redmine/branches/3.1-stable@14914 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2015-12-04 12:46:25 +00:00
parent 05fe793c4f
commit c2723f4bc0

View File

@@ -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
}