]> WPIA git - gigi.git/blobdiff - src/club/wpia/gigi/pages/account/domain/DomainPinglogForm.java
chg: revoke certificates if repeated ping failed
[gigi.git] / src / club / wpia / gigi / pages / account / domain / DomainPinglogForm.java
index 3ddde80ad2b96f7ac03493839a57b9583e589351..63f82d57f0594b8d4a03e2b95502a789af1dcd65 100644 (file)
@@ -51,7 +51,7 @@ public class DomainPinglogForm extends Form {
         try {
             pings = target.getPings();
         } catch (GigiApiException e) {
-            e.format(out, l);
+            e.format(out, l, vars);
             return;
         }
         vars.put("domainname", target.getSuffix());
@@ -64,7 +64,7 @@ public class DomainPinglogForm extends Form {
                 if (counter >= pings.length) {
                     return false;
                 }
-                vars.put("state", pings[counter].getState());
+                vars.put("state", pings[counter].getState().getDBName());
                 vars.put("type", pings[counter].getType());
                 vars.put("config", pings[counter].getInfo());
                 vars.put("date", pings[counter].getDate());