提交 8daf7ca4 编写于 作者: K kohsuke

send back the user where he came from.


git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@1154 71c3de6d-444a-0410-be80-ed276b4c234a
上级 2a80399f
......@@ -1051,7 +1051,9 @@ public final class Hudson extends JobCollection implements Node {
*/
public void doIconSize( StaplerRequest req, StaplerResponse rsp ) throws IOException {
rsp.addCookie(new Cookie("iconSize",req.getQueryString()));
rsp.sendRedirect2(".");
String ref = req.getHeader("Referer");
if(ref==null) ref=".";
rsp.sendRedirect2(ref);
}
public void doFingerprintCleanup( StaplerRequest req, StaplerResponse rsp ) throws IOException {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册