X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2FCreateReplyPage.java;h=927487410fd4c2df3160957372db7406d8f36dc8;hb=90c85f39570270b879e2d3020fe95231410f57c6;hp=496f18473f186f9f01dfbeaebbba60a5f66b142c;hpb=4c936ca25544b5715870dbe74f66e6b5da97f070;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/web/CreateReplyPage.java b/src/main/java/net/pterodactylus/sone/web/CreateReplyPage.java index 496f184..9274874 100644 --- a/src/main/java/net/pterodactylus/sone/web/CreateReplyPage.java +++ b/src/main/java/net/pterodactylus/sone/web/CreateReplyPage.java @@ -50,19 +50,22 @@ public class CreateReplyPage extends SoneTemplatePage { */ @Override protected void processTemplate(Request request, Template template) throws RedirectException { + super.processTemplate(request, template); String postId = request.getHttpRequest().getPartAsStringFailsafe("post", 36); String text = request.getHttpRequest().getPartAsStringFailsafe("text", 65536).trim(); + String returnPage = request.getHttpRequest().getPartAsStringFailsafe("returnPage", 64); if (request.getMethod() == Method.POST) { Post post = webInterface.core().getPost(postId); if (text.length() > 0) { Sone currentSone = getCurrentSone(request.getToadletContext()); webInterface.core().createReply(currentSone, post, text); - throw new RedirectException("viewPost.html?post=" + post.getId()); + throw new RedirectException(returnPage); } template.set("errorTextEmpty", true); } template.set("postId", postId); template.set("text", text); + template.set("returnPage", returnPage); } //