diff --git a/api/src/org/labkey/api/action/FormViewAction.java b/api/src/org/labkey/api/action/FormViewAction.java index fa34304a341..f464857d80d 100644 --- a/api/src/org/labkey/api/action/FormViewAction.java +++ b/api/src/org/labkey/api/action/FormViewAction.java @@ -95,7 +95,7 @@ public ModelAndView handleRequest(FORM form, BindException errors) throws Except { URLHelper url = getSuccessURL(form); if (null != url) - return HttpView.redirect(url); + return HttpView.redirect(url, false); try (Timing ignored = MiniProfiler.step("createView")) { ModelAndView successView = getSuccessView(form); diff --git a/api/src/org/labkey/api/action/SimpleRedirectAction.java b/api/src/org/labkey/api/action/SimpleRedirectAction.java index 4334799a0ab..e3fc053736d 100644 --- a/api/src/org/labkey/api/action/SimpleRedirectAction.java +++ b/api/src/org/labkey/api/action/SimpleRedirectAction.java @@ -23,8 +23,8 @@ import org.springframework.web.servlet.ModelAndView; /** - * Base class for actions that don't want to render their own page, - * but instead just bounce the user to another URL via a HTTP response code that redirects the browser + * Base class for actions that don't want to render their own page, but instead just bounce the user to another URL via + * an HTTP response code that redirects the browser */ public abstract class SimpleRedirectAction