James Moger
2011-04-11 ef5c58d12ff33e4f2b83b6dcd53bdb6c96a6150d
src/com/gitblit/wicket/pages/DiffPage.java
@@ -18,7 +18,7 @@
      final String blobPath = params.getString("f", null);
      Repository r = getRepository();
      RevCommit commit = JGitUtils.getCommit(r, commitId);
      RevCommit commit = JGitUtils.getCommit(r, objectId);
      String diff;
      if (blobPath != null && blobPath.length() > 0) {
         // blob diff
@@ -35,7 +35,7 @@
      add(new LinkPanel("shortlog", "title", commit.getShortMessage(), CommitPage.class, newCommitParameter()));
      add(new PathBreadcrumbsPanel("breadcrumbs", repositoryName, blobPath, commitId));
      add(new PathBreadcrumbsPanel("breadcrumbs", repositoryName, blobPath, objectId));
      add(new Label("diffText", diff).setEscapeModelStrings(false));
   }