FIX: absolute canonical link on topic pages

This commit is contained in:
Régis Hanol 2013-12-12 17:24:00 +01:00
parent dd93407789
commit c7741c9622
2 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,9 @@
require_dependency 'topic_view'
require_dependency 'promotion'
require_dependency 'url_helper'
class TopicsController < ApplicationController
include UrlHelper
before_filter :ensure_logged_in, only: [:timings,
:destroy_timings,
@ -57,7 +59,7 @@ class TopicsController < ApplicationController
perform_show_response
canonical_url @topic_view.canonical_path
canonical_url absolute(@topic_view.canonical_path)
end
def wordpress

View File

@ -12,7 +12,6 @@ module CanonicalURL
module Helpers
def canonical_link_tag(url = nil)
return '' unless url || @canonical_url
tag('link', rel: 'canonical', href: url || @canonical_url || request.url)
end