fix double escaping in title and og:title

v1.18.x
barisusakli 9 years ago
parent f7aa44d1bf
commit d067943773

@ -183,7 +183,7 @@ topicsController.get = function(req, res, callback) {
res.locals.metaTags = [ res.locals.metaTags = [
{ {
name: "title", name: "title",
content: topicData.title content: topicData.titleRaw
}, },
{ {
name: "description", name: "description",
@ -191,7 +191,7 @@ topicsController.get = function(req, res, callback) {
}, },
{ {
property: 'og:title', property: 'og:title',
content: topicData.title content: topicData.titleRaw
}, },
{ {
property: 'og:description', property: 'og:description',

Loading…
Cancel
Save