mirror of
https://github.com/discourse/discourse.git
synced 2025-03-26 09:06:40 +08:00
FIX: Twitter tags were using property
instead of name
.
This commit is contained in:
parent
87b950fc49
commit
dd5885bf12
@ -42,12 +42,12 @@ module ApplicationHelper
|
||||
# Add opengraph tags
|
||||
result = tag(:meta, property: 'og:site_name', content: SiteSetting.title) << "\n"
|
||||
|
||||
result << tag(:meta, property: 'twitter:card', content: "summary")
|
||||
result << tag(:meta, name: 'twitter:card', content: "summary")
|
||||
[:image, :url, :title, :description].each do |property|
|
||||
if opts[property].present?
|
||||
escape = (property != :image)
|
||||
result << tag(:meta, {property: "og:#{property}", content: opts[property]}, nil, escape) << "\n"
|
||||
result << tag(:meta, {property: "twitter:#{property}", content: opts[property]}, nil, escape) << "\n"
|
||||
result << tag(:meta, {name: "twitter:#{property}", content: opts[property]}, nil, escape) << "\n"
|
||||
end
|
||||
end
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user