X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/2af0840ff314f9d1e0265a4a1b50fc6db4af9047..0ff7a928e4359b177a43b7d2e8e1e0e468c2be53:/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