end
def changeset_details(changeset)
- if changeset.closed_at > Time.now
+ if changeset.closed_at > Time.now.utc
action = :created
- time = time_ago_in_words(changeset.created_at, :scope => :'datetime.distance_in_words_ago')
+ time = time_ago_in_words(changeset.created_at, :scope => :"datetime.distance_in_words_ago")
title = l(changeset.created_at)
else
action = :closed
- time = time_ago_in_words(changeset.closed_at, :scope => :'datetime.distance_in_words_ago')
+ time = time_ago_in_words(changeset.closed_at, :scope => :"datetime.distance_in_words_ago")
title = safe_join([t("browse.created"), ": ", l(changeset.created_at), " ".html_safe, t("browse.closed"), ": ", l(changeset.closed_at)])
end
if params.key?(:display_name)
- t "browse.#{action}_html",
- :time => time,
- :title => title
+ t "browse.#{action}_ago_html", :time_ago => tag.abbr(time, :title => title)
else
- t "browse.#{action}_by_html",
- :time => time,
- :title => title,
- :user => changeset_user_link(changeset)
+ t "browse.#{action}_ago_by_html", :time_ago => tag.abbr(time, :title => title),
+ :user => changeset_user_link(changeset)
end
end