From c0f59153b8fe27da7310adf356611dfa830da46a Mon Sep 17 00:00:00 2001 From: adam-m Date: Fri, 28 Dec 2012 18:17:32 -0500 Subject: [PATCH] enclose highlight text in html tags for correctness --- .../autopsy/keywordsearch/HighlightedMatchesSource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/HighlightedMatchesSource.java b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/HighlightedMatchesSource.java index 0443704f39..537eb996fe 100644 --- a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/HighlightedMatchesSource.java +++ b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/HighlightedMatchesSource.java @@ -357,7 +357,7 @@ class HighlightedMatchesSource implements MarkupSource, HighlightLookup { highlightedContent = insertAnchors(highlightedContent); - return "
" + highlightedContent + "
"; + return "
" + highlightedContent + "
"; } } catch (NoOpenCoreException ex) { logger.log(Level.WARNING, "Couldn't query markup for page: " + currentPage, ex);