diff options
-rw-r--r-- | app/views/admin/blog/categories/_category.html.erb | 2 | ||||
-rw-r--r-- | app/views/admin/blog/comments/_comment.html.erb | 2 | ||||
-rw-r--r-- | app/views/admin/blog/posts/_post.html.erb | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/app/views/admin/blog/categories/_category.html.erb b/app/views/admin/blog/categories/_category.html.erb index fe484ee..d8c8a61 100644 --- a/app/views/admin/blog/categories/_category.html.erb +++ b/app/views/admin/blog/categories/_category.html.erb @@ -1,6 +1,6 @@ <li class='clearfix record <%= cycle("on", "on-hover") %>' id="<%= dom_id(category) -%>"> <span class='title'> - <%=h category.title %> + <%= category.title %> <span class="preview"> </span> </span> <span class='actions'> diff --git a/app/views/admin/blog/comments/_comment.html.erb b/app/views/admin/blog/comments/_comment.html.erb index 1817c48..d762067 100644 --- a/app/views/admin/blog/comments/_comment.html.erb +++ b/app/views/admin/blog/comments/_comment.html.erb @@ -1,6 +1,6 @@ <li class='clearfix record <%= cycle("on", "on-hover") %>' id="<%= "comment-#{comment.to_param}" -%>"> <span class='title'> - <%=h comment.name %> + <%= comment.name %> <span class="preview"> - <%= truncate(comment.message, :length => 75) %></span> </span> <span class='actions'> diff --git a/app/views/admin/blog/posts/_post.html.erb b/app/views/admin/blog/posts/_post.html.erb index 2bb80b4..795f897 100644 --- a/app/views/admin/blog/posts/_post.html.erb +++ b/app/views/admin/blog/posts/_post.html.erb @@ -1,6 +1,6 @@ <li class='clearfix record <%= cycle("on", "on-hover") %>' id="<%= dom_id(post) -%>"> <span class='title'> - <%=h post.title %> + <%= post.title %> <span class="preview"> </span> </span> <span class='actions'> |