]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/pages/error/PageNotFound.java
Hand out the title decision is not good.
[gigi.git] / src / org / cacert / gigi / pages / error / PageNotFound.java
index 0033f2397c74f5894c1f90539ca93662095cc26c..179908c1b9a2683a7b30ec1aad0b91a4cd3ab443 100644 (file)
@@ -9,8 +9,8 @@ import org.cacert.gigi.pages.Page;
 
 public class PageNotFound extends Page {
 
-       public PageNotFound(String title) {
-               super(title);
+       public PageNotFound() {
+               super("");
        }
 
        @Override
@@ -18,4 +18,9 @@ public class PageNotFound extends Page {
                getDefaultTemplate().output(resp.getWriter(), Page.getLanguage(req), null);
        }
 
+       @Override
+       public boolean needsLogin() {
+               return false;
+       }
+
 }