Skip to content

Commit

Permalink
We shouldn't really just show the raw date.
Browse files Browse the repository at this point in the history
  • Loading branch information
parndt committed Oct 12, 2010
1 parent d80a4fd commit 5fa6402
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/views/admin/inquiries/index.html.erb
Expand Up @@ -12,7 +12,7 @@
<% else %>
<% if @grouped_inquiries.any? -%>
<% @grouped_inquiries.each do |container| %>
<h3><%= l((inquiry_group = container.last).first.created_at) %></h3>
<h3><%= l((inquiry_group = container.last).first.created_at.strftime('%A, %d %B %Y')) %></h3>
<ul>
<%= render :partial => 'inquiry', :collection => inquiry_group %>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion lib/gemspec.rb
@@ -1,5 +1,5 @@
#!/usr/bin/env ruby
version = '0.9.9.1'
version = '0.9.9.2'
raise "Could not get version so gemspec can not be built" if version.nil?
files = Dir.glob("**/*").flatten.reject do |file|
file =~ /\.gem$/
Expand Down
2 changes: 1 addition & 1 deletion refinerycms-inquiries.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = %q{refinerycms-inquiries}
s.version = %q{0.9.9.1}
s.version = %q{0.9.9.2}
s.date = %q{2010-10-13}
s.summary = %q{Inquiry handling functionality for the Refinery CMS project.}
s.description = %q{Inquiry handling functionality extracted from Refinery CMS to allow you to have a contact form and manage inquiries in the Refinery backend.}
Expand Down

0 comments on commit 5fa6402

Please sign in to comment.