Move login requirement to SoneTemplatePage.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / CreateReplyPage.java
index 420fb86..231d372 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);
        }
 
        //
@@ -54,7 +54,6 @@ public class CreateReplyPage extends SoneTemplatePage {
                String postId = request.getHttpRequest().getPartAsStringFailsafe("post", 36);
                String text = request.getHttpRequest().getPartAsStringFailsafe("text", 65536).trim();
                String returnPage = request.getHttpRequest().getPartAsStringFailsafe("returnPage", 64);
-               System.out.println("postId: " + postId + ", text: " + text + ", returnPage: " + returnPage);
                if (request.getMethod() == Method.POST) {
                        Post post = webInterface.core().getPost(postId);
                        if (text.length() > 0) {
@@ -69,16 +68,4 @@ public class CreateReplyPage extends SoneTemplatePage {
                template.set("returnPage", returnPage);
        }
 
-       //
-       // SONETEMPLATEPAGE METHODS
-       //
-
-       /**
-        * {@inheritDoc}
-        */
-       @Override
-       protected boolean requiresLogin() {
-               return true;
-       }
-
 }