diff options
author | Philip Arndt <p@arndt.io> | 2013-07-15 05:05:19 +1200 |
---|---|---|
committer | Philip Arndt <p@arndt.io> | 2013-07-15 05:05:19 +1200 |
commit | 7b23a4c4c8f560262a70464e86923384202b8b53 (patch) | |
tree | 2a2907816386dcda621dad07351e3eee4938d201 /app/views/refinery | |
parent | b9ab06148f249b7968428700d9e4490c478cbd54 (diff) | |
download | refinerycms-blog-7b23a4c4c8f560262a70464e86923384202b8b53.tar.gz refinerycms-blog-7b23a4c4c8f560262a70464e86923384202b8b53.tar.bz2 refinerycms-blog-7b23a4c4c8f560262a70464e86923384202b8b53.zip |
Fix longstanding typo filed_in -> filled_in
Diffstat (limited to 'app/views/refinery')
-rw-r--r-- | app/views/refinery/blog/posts/_post.html.erb | 4 | ||||
-rw-r--r-- | app/views/refinery/blog/shared/_post.html.erb | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/app/views/refinery/blog/posts/_post.html.erb b/app/views/refinery/blog/posts/_post.html.erb index 9811dd2..057fbe7 100644 --- a/app/views/refinery/blog/posts/_post.html.erb +++ b/app/views/refinery/blog/posts/_post.html.erb @@ -18,8 +18,8 @@ </div> <% end %> <% if (categories = @post.categories).any? %> - <aside class='filed_in'> - <%= t('filed_in', :scope => 'refinery.blog.posts.show') %> + <aside class='filled_in'> + <%= t('filled_in', :scope => 'refinery.blog.posts.show') %> <% categories.each_with_index do |category, index| %> <%= link_to category.title, refinery.blog_category_path(category) -%><%= ',' if index < ((categories.length) - 1) %> <% end %> diff --git a/app/views/refinery/blog/shared/_post.html.erb b/app/views/refinery/blog/shared/_post.html.erb index 532d48f..5bf9c3c 100644 --- a/app/views/refinery/blog/shared/_post.html.erb +++ b/app/views/refinery/blog/shared/_post.html.erb @@ -8,8 +8,8 @@ </time> <%= "#{t('by', :scope => 'refinery.blog.posts.show')} #{post.author.username}" if post.author.present? %>. <% if (categories = post.categories.translated).any? %> - <aside class='filed_in'> - <%= t('filed_in', :scope => 'refinery.blog.posts.show') %> + <aside class='filled_in'> + <%= t('filled_in', :scope => 'refinery.blog.posts.show') %> <%=raw categories.collect { |category| link_to category.title, refinery.blog_category_path(category) }.to_sentence %> </aside> <% end %> |