]> WPIA git - gigi.git/commitdiff
The error page does not need login :-).
authorFelix Dörre <felix@dogcraft.de>
Thu, 10 Jul 2014 19:50:06 +0000 (21:50 +0200)
committerFelix Dörre <felix@dogcraft.de>
Thu, 10 Jul 2014 22:35:16 +0000 (00:35 +0200)
src/org/cacert/gigi/pages/error/PageNotFound.java

index 0033f2397c74f5894c1f90539ca93662095cc26c..507821caa5559e3df03686e4c0418375f1c1dada 100644 (file)
@@ -18,4 +18,9 @@ public class PageNotFound extends Page {
                getDefaultTemplate().output(resp.getWriter(), Page.getLanguage(req), null);
        }
 
+       @Override
+       public boolean needsLogin() {
+               return false;
+       }
+
 }