Rafael Cavazin
2013-01-27 11c14e192b907acd3fdc2d6a9bcf4faafc593afe
src/com/gitblit/wicket/pages/FederationRegistrationPage.java
@@ -41,7 +41,7 @@
      FederationModel registration = GitBlit.self().getFederationRegistration(url, name);
      if (registration == null) {
         error("Could not find federation registration!", true);
         error(getString("gb.couldNotFindFederationRegistration"), true);
      }
      setupPage(registration.isResultData() ? getString("gb.federationResults")
@@ -52,8 +52,8 @@
      add(new Label("frequency", registration.frequency));
      add(new Label("folder", registration.folder));
      add(new Label("token", showAdmin ? registration.token : "--"));
      add(WicketUtils.createTimestampLabel("lastPull", registration.lastPull, getTimeZone()));
      add(WicketUtils.createTimestampLabel("nextPull", registration.nextPull, getTimeZone()));
      add(WicketUtils.createTimestampLabel("lastPull", registration.lastPull, getTimeZone(), getTimeUtils()));
      add(WicketUtils.createTimestampLabel("nextPull", registration.nextPull, getTimeZone(), getTimeUtils()));
      StringBuilder inclusions = new StringBuilder();
      for (String inc : registration.inclusions) {