X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=src%2Forg%2Fcacert%2Fgigi%2FGigi.java;h=717865454ee4bba7a39001bd0467d1d74e1ae3f8;hb=06fff0058cc341b53a5fd57a0afc8b2c1d906d28;hp=6a572e08ebb469118be8bc1e430dc324b27b4392;hpb=4b2908388779efa4fc1752785319328526f52662;p=gigi.git diff --git a/src/org/cacert/gigi/Gigi.java b/src/org/cacert/gigi/Gigi.java index 6a572e08..71786545 100644 --- a/src/org/cacert/gigi/Gigi.java +++ b/src/org/cacert/gigi/Gigi.java @@ -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); }