Increase the possible length of “returnPage” because 64 is too short.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / CreateReplyPage.java
index 9274874..2bfab6f 100644 (file)
@@ -38,7 +38,7 @@ public class CreateReplyPage extends SoneTemplatePage {
         *            The Sone web interface
         */
        public CreateReplyPage(Template template, WebInterface webInterface) {
-               super("createReply.html", template, "Page.CreateReply.Title", webInterface);
+               super("createReply.html", template, "Page.CreateReply.Title", webInterface, true);
        }
 
        //
@@ -53,12 +53,12 @@ public class CreateReplyPage extends SoneTemplatePage {
                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);
+               String returnPage = request.getHttpRequest().getPartAsStringFailsafe("returnPage", 256);
                if (request.getMethod() == Method.POST) {
-                       Post post = webInterface.core().getPost(postId);
+                       Post post = webInterface.getCore().getPost(postId);
                        if (text.length() > 0) {
                                Sone currentSone = getCurrentSone(request.getToadletContext());
-                               webInterface.core().createReply(currentSone, post, text);
+                               webInterface.getCore().createReply(currentSone, post, text);
                                throw new RedirectException(returnPage);
                        }
                        template.set("errorTextEmpty", true);
@@ -68,16 +68,4 @@ public class CreateReplyPage extends SoneTemplatePage {
                template.set("returnPage", returnPage);
        }
 
-       //
-       // SONETEMPLATEPAGE METHODS
-       //
-
-       /**
-        * {@inheritDoc}
-        */
-       @Override
-       protected boolean requiresLogin() {
-               return true;
-       }
-
 }