mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-01 11:35:55 +01:00
fix double escaping in title and og:title
This commit is contained in:
@@ -183,7 +183,7 @@ topicsController.get = function(req, res, callback) {
|
||||
res.locals.metaTags = [
|
||||
{
|
||||
name: "title",
|
||||
content: topicData.title
|
||||
content: topicData.titleRaw
|
||||
},
|
||||
{
|
||||
name: "description",
|
||||
@@ -191,7 +191,7 @@ topicsController.get = function(req, res, callback) {
|
||||
},
|
||||
{
|
||||
property: 'og:title',
|
||||
content: topicData.title
|
||||
content: topicData.titleRaw
|
||||
},
|
||||
{
|
||||
property: 'og:description',
|
||||
|
Reference in New Issue
Block a user