diff --git a/app/presenters/post_presenter.rb b/app/presenters/post_presenter.rb index 9d2164933..3f524940a 100644 --- a/app/presenters/post_presenter.rb +++ b/app/presenters/post_presenter.rb @@ -165,7 +165,7 @@ class PostPresenter < Presenter def image_html(template) return template.content_tag("p", "The artist requested removal of this image") if @post.is_banned? && !CurrentUser.user.is_gold? - return template.content_tag("p", template.link_to("You need a gold account to see this image.", template.upgrade_information_users_path)) if !Danbooru.config.can_user_see_post?(CurrentUser.user, @post) + return template.content_tag("p", template.link_to("You need a gold account to see this image.", template.new_user_upgrade_path)) if !Danbooru.config.can_user_see_post?(CurrentUser.user, @post) return template.content_tag("p", "This image is unavailable") if !@post.visible? if @post.is_flash? diff --git a/app/views/static/site_map.html.erb b/app/views/static/site_map.html.erb index 88abc2b5c..533283c73 100644 --- a/app/views/static/site_map.html.erb +++ b/app/views/static/site_map.html.erb @@ -100,7 +100,7 @@
  • <%= link_to("Feedback", user_feedbacks_path) %>
  • <%= link_to("Signup", new_user_path) %>
  • <%= link_to("Terms of Service", terms_of_service_path) %>
  • -
  • <%= link_to("Upgrade Information", upgrade_information_users_path) %>
  • +
  • <%= link_to("Upgrade Information", new_user_upgrade_path) %>