X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2FAboutPage.java;h=c20c72e1f891bdd09f562571e7555a77a18b5f1c;hp=f49ff311730a11684010fa4e12f42e189b71ec9a;hb=4c831fb948000bc1730ebcde73eeb62317f4ac54;hpb=ffe8711403c25bebba67b0835174fa29b62b8fa7 diff --git a/src/main/java/net/pterodactylus/sone/web/AboutPage.java b/src/main/java/net/pterodactylus/sone/web/AboutPage.java index f49ff31..c20c72e 100644 --- a/src/main/java/net/pterodactylus/sone/web/AboutPage.java +++ b/src/main/java/net/pterodactylus/sone/web/AboutPage.java @@ -41,7 +41,7 @@ public class AboutPage extends SoneTemplatePage { * The version to display */ public AboutPage(Template template, WebInterface webInterface, Version version) { - super("about.html", template, "Page.About.Title", webInterface); + super("about.html", template, "Page.About.Title", webInterface, false); this.version = version; } @@ -58,16 +58,4 @@ public class AboutPage extends SoneTemplatePage { template.set("version", version); } - // - // SONETEMPLATEPAGE METHODS - // - - /** - * {@inheritDoc} - */ - @Override - protected boolean requiresLogin() { - return false; - } - }