提交 1ab6934a 编写于 作者: K kohsuke

fixed a bug where the build link cannot be clicked even by an admin when the...

fixed a bug where the build link cannot be clicked even by an admin when the security is enabled (#944)


git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@5418 71c3de6d-444a-0410-be80-ed276b4c234a
上级 896d84e9
......@@ -29,7 +29,7 @@ public final class BuildAuthorizationToken {
}
public static void startBuildIfAuthorized(BuildAuthorizationToken token, BuildableItem job, StaplerRequest req, StaplerResponse rsp) throws IOException, ServletException {
if(!Hudson.getInstance().isUseSecurity() || (token!=null && token.authorizedToStartBuild(req,rsp))) {
if(!Hudson.getInstance().isUseSecurity() || (token!=null && token.authorizedToStartBuild(req,rsp)) || Hudson.adminCheck(req, rsp)) {
job.scheduleBuild();
rsp.forwardToPreviousPage(req);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册