James Moger
2011-07-18 b795b83d76b7a044c7d5bafeb8e45eefb1303581
src/com/gitblit/wicket/WicketUtils.java
@@ -169,7 +169,7 @@
   }
   public static ContextImage newImage(String wicketId, String file, String tooltip) {
      ContextImage img = new ContextImage(wicketId, com.gitblit.Constants.RESOURCE_PATH + file);
      ContextImage img = new ContextImage(wicketId, file);
      if (!StringUtils.isEmpty(tooltip)) {
         setHtmlTooltip(img, tooltip);
      }
@@ -177,7 +177,7 @@
   }
   public static ContextRelativeResource getResource(String file) {
      return new ContextRelativeResource(com.gitblit.Constants.RESOURCE_PATH + file);
      return new ContextRelativeResource(file);
   }
   public static String getHostURL(Request request) {