Use traditional getter name.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / DeletePostPage.java
index 18262a2..761be50 100644 (file)
@@ -38,7 +38,7 @@ public class DeletePostPage extends SoneTemplatePage {
         *            The Sone web interface
         */
        public DeletePostPage(Template template, WebInterface webInterface) {
-               super("deletePost.html", template, "Page.DeletePost.Title", webInterface);
+               super("deletePost.html", template, "Page.DeletePost.Title", webInterface, true);
        }
 
        //
@@ -54,14 +54,14 @@ public class DeletePostPage extends SoneTemplatePage {
                if (request.getMethod() == Method.GET) {
                        String postId = request.getHttpRequest().getParam("post");
                        String returnPage = request.getHttpRequest().getParam("returnPage");
-                       Post post = webInterface.core().getPost(postId);
+                       Post post = webInterface.getCore().getPost(postId);
                        template.set("post", post);
                        template.set("returnPage", returnPage);
                        return;
                } else if (request.getMethod() == Method.POST) {
                        String postId = request.getHttpRequest().getPartAsStringFailsafe("post", 36);
                        String returnPage = request.getHttpRequest().getPartAsStringFailsafe("returnPage", 64);
-                       Post post = webInterface.core().getPost(postId);
+                       Post post = webInterface.getCore().getPost(postId);
                        Sone currentSone = getCurrentSone(request.getToadletContext());
                        if (!post.getSone().equals(currentSone)) {
                                throw new RedirectException("noPermission.html");
@@ -77,16 +77,4 @@ public class DeletePostPage extends SoneTemplatePage {
                }
        }
 
-       //
-       // SONETEMPLATEPAGE METHODS
-       //
-
-       /**
-        * {@inheritDoc}
-        */
-       @Override
-       protected boolean requiresLogin() {
-               return true;
-       }
-
 }