diff --git a/source/java/org/alfresco/web/bean/forums/EditPostDialog.java b/source/java/org/alfresco/web/bean/forums/EditPostDialog.java index f78156e4f8..e02d32bee9 100644 --- a/source/java/org/alfresco/web/bean/forums/EditPostDialog.java +++ b/source/java/org/alfresco/web/bean/forums/EditPostDialog.java @@ -65,6 +65,9 @@ public class EditPostDialog extends CreatePostDialog String htmlContent = reader.getContentString(); if (htmlContent != null) { + // ETHREEOH-1216: replace both forms of 'br' as older posts have the
version + // which doesn't work in all browsers supported by Alfresco Explorer + htmlContent = StringUtils.replace(htmlContent, "
", "\r\n"); this.content = StringUtils.replace(htmlContent, "
", "\r\n"); } }