Skip to content

Commit

Permalink
Small modification to date in post listing (I don't like leading zero…
Browse files Browse the repository at this point in the history
…es on the day)
  • Loading branch information
awagener committed Jun 8, 2010
1 parent 2380e01 commit de161b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/admin/blogs/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<% else %>
<% if @grouped_blogs.any? %>
<% @grouped_blogs.each do |date, posts| %>
<h3><%= date.strftime("%A, %d %B %Y") %></h3>
<h3><%= date.strftime("%A, #{date.day} %B %Y") %></h3>
<ul>
<%= render :partial => 'blog', :collection => posts %>
</ul>
Expand Down

0 comments on commit de161b3

Please sign in to comment.