Skip to content

Commit dc8aa57

Browse files
author
Vladimir Kotal
authored
Merge pull request #2500 from blu28/master
Fix inconsistency in handling inclusion of paths.tsv data fixes #2085
2 parents 4e163d8 + c87b984 commit dc8aa57

File tree

1 file changed

+1
-1
lines changed
  • opengrok-indexer/src/main/java/org/opengrok/indexer/search

1 file changed

+1
-1
lines changed

opengrok-indexer/src/main/java/org/opengrok/indexer/search/Results.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ public static void prettyPrint(Writer out, SearchHelper sh, int start,
186186
out.write("/</a>");
187187
if (sh.desc != null) {
188188
out.write(" - <i>");
189-
out.write(htmlize(sh.desc.get(parent)));
189+
out.write(sh.desc.get(parent));
190190
out.write("</i>");
191191
}
192192
JSONArray messages;

0 commit comments

Comments
 (0)