Skip to content

Commit 3f78abf

Browse files
committed
Fix site blog encoding issue
git-svn-id: https://share-extras.googlecode.com/svn/trunk/Site Blog Dashlet@182 a3f5c567-fd0f-3a89-9b71-a290c5a5f590
1 parent 31c2bd2 commit 3f78abf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/alfresco/site-webscripts/org/alfresco/components/dashlets/site-blog.get.html.ftl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<div id="${args.htmlid}-list-div-${post.name}" class="detail-list-item <#if post_index = 0>first-item<#elseif !post_has_next>last-item</#if>">
1919
<h4><a id="${args.htmlid}-details-span-${post_index}" href="${url.context}/page/site/${site}/blog-postview?container=${container}&postId=${post.name?html}" class="theme-color-1 blog-post-title" title="${(post.title!"")?html}">${(post.title!"")?html}</a></h4>
2020
<div class="post-details">${msg("text.posted-by", postedBy)} ${msg("text.modified-on", post.createdOn?datetime("MMM dd yyyy HH:mm:ss 'GMT'Z '('zzz')'")?string("d MMM, yyyy HH:mm:ss"))}</div>
21-
<div class="description"><#if post.content?length &gt; 100>${(post.content)?substring(0, 100)?replace('</*\\w*>', '', 'r')?html} ...<#else>${post.content?replace('</*\\w*>', '', 'r')?html}</#if></div>
21+
<div class="description"><#if post.content?length &gt; 100>${(post.content)?substring(0, 100)?replace('</*\\w*>', '', 'r')} ...<#else>${post.content?replace('</*\\w*>', '', 'r')}</#if></div>
2222
</div>
2323
</#list>
2424
<#else>

0 commit comments

Comments
 (0)