X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b8a8a88004d25837a10436fdc13128146b32c32b..f9109b7a75f91c208a7b5f68cc64ba253a9041c5:/app/helpers/note_helper.rb diff --git a/app/helpers/note_helper.rb b/app/helpers/note_helper.rb index 89c8cc376..dbe0c89f7 100644 --- a/app/helpers/note_helper.rb +++ b/app/helpers/note_helper.rb @@ -2,11 +2,11 @@ module NoteHelper def note_event(event, at, by) if by.nil? I18n.t("browse.note." + event + "_by_anonymous", - :when => friendly_date(at), + :when => friendly_date_ago(at), :exact_time => l(at)).html_safe else I18n.t("browse.note." + event + "_by", - :when => friendly_date(at), + :when => friendly_date_ago(at), :exact_time => l(at), :user => note_author(by)).html_safe end @@ -18,7 +18,7 @@ module NoteHelper elsif author.status == "deleted" t("users.no_such_user.deleted") else - link_to h(author.display_name), link_options.merge(:controller => "users", :action => "show", :display_name => author.display_name) + link_to h(author.display_name), link_options.merge(:controller => "/users", :action => "show", :display_name => author.display_name) end end end