diff options
author | Uģis Ozols <ugis.ozolss@gmail.com> | 2010-12-03 09:08:07 +0200 |
---|---|---|
committer | Uģis Ozols <ugis.ozolss@gmail.com> | 2010-12-03 09:08:07 +0200 |
commit | 1167a1d6a99e51f8f7d1a3cef3d75eaa402656a8 (patch) | |
tree | 028855d63608b97d61f8c4f337223090506c8d2a /app | |
parent | fef6dc47a6fb92dabcde7cdfc2448a524ceb2783 (diff) | |
download | refinerycms-blog-1167a1d6a99e51f8f7d1a3cef3d75eaa402656a8.tar.gz refinerycms-blog-1167a1d6a99e51f8f7d1a3cef3d75eaa402656a8.tar.bz2 refinerycms-blog-1167a1d6a99e51f8f7d1a3cef3d75eaa402656a8.zip |
We don't need those h in Rails 3.
Diffstat (limited to 'app')
-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'> |