X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/2af0840ff314f9d1e0265a4a1b50fc6db4af9047..3238bf567c5c8a0e807343588b8f38f86d65c1cd:/app/helpers/note_helper.rb diff --git a/app/helpers/note_helper.rb b/app/helpers/note_helper.rb index 87bd86f42..2a1016129 100644 --- a/app/helpers/note_helper.rb +++ b/app/helpers/note_helper.rb @@ -17,6 +17,8 @@ module NoteHelper def note_author(author, link_options = {}) if author.nil? "" + elsif author.status == "deleted" + t("user.no_such_user.deleted") else link_to h(author.display_name), link_options.merge(:controller => "user", :action => "view", :display_name => author.display_name) end