nirnanaaa / gollum_rails

Integrate Gollum wiki into your Rails app. Continued
GNU Affero General Public License v3.0
43 stars 21 forks source link

Last Changed by Issue #23

Closed vinnie-pepi closed 10 years ago

vinnie-pepi commented 10 years ago

Hi, it looks like your "last_changed_by" method in /lib/gollum_rails/core.rb gives the first user that changed it.

I think the history array is in descending order so "%s <%s>" % [history.last.author.name, history.last.author.email] should be "%s <%s>" % [history.first.author.name, history.first.author.email]

Thanks.

nirnanaaa commented 10 years ago

Think that this is fixed. Thanks for reporting

vinnie-pepi commented 10 years ago

great, thanks for the quick fix!