Browse Source

Drop new lines between table rows for Opera.

tags/v0.5.0
James Moger 13 years ago
parent
commit
b5b4026628
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/com/gitblit/utils/GitBlitDiffFormatter.java

+ 1
- 1
src/com/gitblit/utils/GitBlitDiffFormatter.java View File

@@ -120,7 +120,7 @@ public class GitBlitDiffFormatter extends GitWebDiffFormatter {
sb.append("<table><tbody>");
inFile = true;
} else {
sb.append(line).append('\n');
sb.append(line);
}
}
sb.append("</table></div>");

Loading…
Cancel
Save