Skip to content
Snippets Groups Projects
Commit 3fae73c9 authored by srosse's avatar srosse
Browse files

OO-4196: remove double escaping of message titles

parent 7bd8fbc0
No related branches found
No related tags found
No related merge requests found
......@@ -92,7 +92,7 @@ public class ForumMessageDataModel extends DefaultFlexiTreeTableDataModel<Messag
switch(ForumMessageCols.values()[col]) {
case type: return row.getView().getStatusCode();
case mark: return row.getMarkLink();
case thread: return StringHelper.escapeHtml(row.getView().getTitle());
case thread: return row.getView().getTitle();
case lastModified: return row.getView().getLastModified();
case newMessage: return row.getView().isNewMessage()? Boolean.TRUE: null;
default: return "ERROR";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment