Don’t render posts and replies on getStatus().
[Sone.git] / src / main / java / net / pterodactylus / sone / web / CreatePostPage.java
index 2878f1c..10a8c7a 100644 (file)
@@ -38,7 +38,7 @@ public class CreatePostPage extends SoneTemplatePage {
         *            The Sone web interface
         */
        public CreatePostPage(Template template, WebInterface webInterface) {
-               super("createPost.html", template, "Page.CreatePost.Title", webInterface);
+               super("createPost.html", template, "Page.CreatePost.Title", webInterface, true);
        }
 
        //
@@ -51,12 +51,12 @@ public class CreatePostPage extends SoneTemplatePage {
        @Override
        protected void processTemplate(Request request, Template template) throws RedirectException {
                super.processTemplate(request, template);
-               String returnPage = request.getHttpRequest().getPartAsStringFailsafe("returnPage", 64);
+               String returnPage = request.getHttpRequest().getPartAsStringFailsafe("returnPage", 256);
                if (request.getMethod() == Method.POST) {
                        String text = request.getHttpRequest().getPartAsStringFailsafe("text", 65536).trim();
                        if (text.length() != 0) {
                                Sone currentSone = getCurrentSone(request.getToadletContext());
-                               webInterface.core().createPost(currentSone, System.currentTimeMillis(), text);
+                               webInterface.getCore().createPost(currentSone, System.currentTimeMillis(), text);
                                throw new RedirectException(returnPage);
                        }
                        template.set("errorTextEmpty", true);
@@ -64,16 +64,4 @@ public class CreatePostPage extends SoneTemplatePage {
                template.set("returnPage", returnPage);
        }
 
-       //
-       // SONETEMPLATEPAGE METHODS
-       //
-
-       /**
-        * {@inheritDoc}
-        */
-       @Override
-       protected boolean requiresLogin() {
-               return true;
-       }
-
 }