From fd2b596a18f07bc7be84aab78d79bda0c4c43cb3 Mon Sep 17 00:00:00 2001 From: r888888888 Date: Fri, 31 May 2013 16:39:39 -0700 Subject: [PATCH] fixes #1616 --- app/views/forum_posts/_forum_post.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/forum_posts/_forum_post.html.erb b/app/views/forum_posts/_forum_post.html.erb index 5aa59276d..1b970664d 100644 --- a/app/views/forum_posts/_forum_post.html.erb +++ b/app/views/forum_posts/_forum_post.html.erb @@ -15,7 +15,7 @@
<%= format_text(forum_post.body) %>
- <% if forum_post.updater_id != forum_post.creator_id %> + <% if forum_post.updated_at - forum_post.created_at > 5.minutes %>

Updated by <%= link_to_user forum_post.updater %> <%= time_ago_in_words_tagged(forum_post.updated_at) %>

<% end %>