From abcd3ca5b007546550177d4449169a31679b9c65 Mon Sep 17 00:00:00 2001 From: danielvincent Date: Thu, 9 Dec 2010 20:13:46 -0800 Subject: [PATCH] time ago in words down to seconds --- app/helpers/application_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 94e49b23c..e58c66960 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -83,7 +83,7 @@ module ApplicationHelper end def how_long_ago(obj) - "#{time_ago_in_words(obj.created_at)} #{t('ago')}" + "#{time_ago_in_words(obj.created_at, true)} #{t('ago')}" end def person_url(person)