]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/Gigi.java
add date-validity checker in 'CalendarUtil'
[gigi.git] / src / org / cacert / gigi / Gigi.java
index 6a572e08ebb469118be8bc1e430dc324b27b4392..717865454ee4bba7a39001bd0467d1d74e1ae3f8 100644 (file)
@@ -135,7 +135,7 @@ public final class Gigi extends HttpServlet {
             putPage(DomainOverview.PATH + "*", new DomainOverview("Domains"), "Certificates");
 
             putPage(AssurePage.PATH + "/*", new AssurePage(), "Web of Trust");
-            putPage(MyPoints.PATH, new MyPoints("My Points"), "Web of Trust");
+            putPage(MyPoints.PATH, new MyPoints(), "Web of Trust");
             putPage(MyListingPage.PATH, new MyListingPage(), "Web of Trust");
             putPage(RequestTTPPage.PATH, new RequestTTPPage(), "Web of Trust");
 
@@ -393,7 +393,7 @@ public final class Gigi extends HttpServlet {
             vars.put("content", content);
             if (currentAuthContext != null) {
                 // TODO maybe move this information into the AuthContext object
-                vars.put("loginMethod", lang.getTranslation((String) req.getSession().getAttribute(LOGIN_METHOD)));
+                vars.put("loginMethod", req.getSession().getAttribute(LOGIN_METHOD));
                 vars.put("authContext", currentAuthContext);
 
             }