Florian Zschocke
2013-07-09 a0c34e37fe8e456a21c7a57e9d45e637ab40cce8
src/main/java/com/gitblit/utils/StringUtils.java
@@ -331,7 +331,7 @@
      String fp = fullPath.replace('\\', '/').toLowerCase();
      if (fp.startsWith(bp)) {
         String relativePath = fullPath.substring(basePath.length()).replace('\\', '/');
         if (relativePath.charAt(0) == '/') {
         if (relativePath.length() > 0 && relativePath.charAt(0) == '/') {
            relativePath = relativePath.substring(1);
         }
         return relativePath;