From ff0d59c16b45ca1f67c06b7614e86ecaa28c832a Mon Sep 17 00:00:00 2001 From: Daniel Kimsey Date: Tue, 13 Nov 2012 15:02:55 -0500 Subject: [PATCH] Changed history date to use authored date instead. --- lib/gollum/frontend/views/history.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gollum/frontend/views/history.rb b/lib/gollum/frontend/views/history.rb index 3c069e84..8c28d7e8 100644 --- a/lib/gollum/frontend/views/history.rb +++ b/lib/gollum/frontend/views/history.rb @@ -19,7 +19,7 @@ module Precious :selected => @page.version.id == v.id, :author => v.author.name.respond_to?(:force_encoding) ? v.author.name.force_encoding('UTF-8') : v.author.name, :message => v.message.respond_to?(:force_encoding) ? v.message.force_encoding('UTF-8') : v.message, - :date => v.committed_date.strftime("%B %d, %Y"), + :date => v.authored_date.strftime("%B %d, %Y"), :gravatar => Digest::MD5.hexdigest(v.author.email) } end end