Hi Alain,
That behaviour was changed in the following tickets:
LPS-23686 and
LPS-23692.
If you want a different behaviour you can change that using a Hook and modifying view_entry_content.jsp inside the blogs folder and the following lines (they should be around line 137):
<c:when test='<%= pageDisplayStyle.equals(RSSUtil.DISPLAY_STYLE_ABSTRACT) && !strutsAction.equals("/blogs/view_entry") %>'>
<%= StringUtil.shorten(HtmlUtil.stripHtml(entry.getDescription()), pageAbstractLength) %>
and use the following:
<c:when test='<%= pageDisplayStyle.equals(RSSUtil.DISPLAY_STYLE_ABSTRACT) && !strutsAction.equals("/blogs/view_entry") %>'>
<%= StringUtil.shorten(HtmlUtil.stripHtml(entry.getContent()), pageAbstractLength) %>
Hope it helps
Please sign in to flag this as inappropriate.