James Moger
2013-01-05 9e186eedf1a09ca7ac4fbdea32b00e7e5331f7eb
src/com/gitblit/wicket/pages/TreePage.java
@@ -144,11 +144,11 @@
                  item.add(links);                  
               } else {
                  // blob link
                  String displayPath = entry.path;
                  String displayPath = entry.name;
                  String path = entry.path;
                  if (entry.isSymlink()) {
                     path = JGitUtils.getStringContent(getRepository(), getCommit().getTree(), path);
                     displayPath = entry.path + " -> " + path;
                     displayPath = entry.name + " -> " + path;
                  }
                  item.add(WicketUtils.getFileImage("pathIcon", entry.name));
                  item.add(new Label("pathSize", byteFormat.format(entry.size)));