Revert "FIX: paginated category and topic pages should not have canonical tag"
This reverts commit ecd93f7efb
.
This commit is contained in:
parent
4986314122
commit
0f7aaf5ab1
|
@ -84,7 +84,7 @@ class ListController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
define_method("category_#{filter}") do
|
define_method("category_#{filter}") do
|
||||||
canonical_url "#{Discourse.base_url}#{@category.url}" unless params[:page].present?
|
canonical_url "#{Discourse.base_url}#{@category.url}"
|
||||||
self.send(filter, category: @category.id)
|
self.send(filter, category: @category.id)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -93,7 +93,7 @@ class ListController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
define_method("parent_category_category_#{filter}") do
|
define_method("parent_category_category_#{filter}") do
|
||||||
canonical_url "#{Discourse.base_url}#{@category.url}" unless params[:page].present?
|
canonical_url "#{Discourse.base_url}#{@category.url}"
|
||||||
self.send(filter, category: @category.id)
|
self.send(filter, category: @category.id)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -83,7 +83,7 @@ class TopicsController < ApplicationController
|
||||||
response.headers['X-Robots-Tag'] = 'noindex'
|
response.headers['X-Robots-Tag'] = 'noindex'
|
||||||
end
|
end
|
||||||
|
|
||||||
canonical_url UrlHelper.absolute_without_cdn("#{Discourse.base_uri}#{@topic_view.canonical_path}") unless params[:page].present?
|
canonical_url UrlHelper.absolute_without_cdn("#{Discourse.base_uri}#{@topic_view.canonical_path}")
|
||||||
|
|
||||||
perform_show_response
|
perform_show_response
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue