James Moger
2011-05-11 dfb88962fdbd29f59abe92178bb042738d57c3e1
src/com/gitblit/wicket/pages/SummaryPage.java
@@ -57,8 +57,8 @@
      }
      // repository description
      add(new Label("repositoryDescription", description));
      add(new Label("repositoryOwner", JGitUtils.getRepositoryOwner(r)));
      add(new Label("repositoryDescription", getRepositoryModel().description));
      add(new Label("repositoryOwner", getRepositoryModel().owner));
      add(WicketUtils.createTimestampLabel("repositoryLastChange", JGitUtils.getLastChange(r), getTimeZone()));
      if (metricsTotal == null) {
@@ -70,7 +70,7 @@
      add(new LogPanel("commitsPanel", repositoryName, null, r, numberCommits, 0));
      add(new TagsPanel("tagsPanel", repositoryName, r, numberRefs));
      add(new BranchesPanel("branchesPanel", repositoryName, r, numberRefs));
      add(new BranchesPanel("branchesPanel", getRepositoryModel(), r, numberRefs));
      // Display an activity line graph
      insertActivityGraph(metrics);