]> git.openstreetmap.org Git - rails.git/blobdiff - app/helpers/note_helper.rb
Rubocop fixes and increase per method complexity limit from 23 to 25
[rails.git] / app / helpers / note_helper.rb
index 6ebd18345526e186833527454e72895065c36539..4b5be42d78b8786988be869e4dc5d2b5ca3c1901 100644 (file)
@@ -16,9 +16,9 @@ module NoteHelper
     if author.nil?
       ""
     elsif author.status == "deleted"
     if author.nil?
       ""
     elsif author.status == "deleted"
-      t("user.no_such_user.deleted")
+      t("users.no_such_user.deleted")
     else
     else
-      link_to h(author.display_name), link_options.merge(:controller => "user", :action => "view", :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
     end
   end
 end