From d45b31f44259460a13eebf4ac314fb917ad7fe3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20Fromme?= Date: Thu, 17 Jan 2019 15:08:57 +0100 Subject: [PATCH] Don't escape special chars in facebook pixel code values --- .../ep_theme/Resources/Private/Partials/FacebookPixelCode.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/typo3conf/ext/ep_theme/Resources/Private/Partials/FacebookPixelCode.html b/web/typo3conf/ext/ep_theme/Resources/Private/Partials/FacebookPixelCode.html index abbdea6d..a295bfba 100644 --- a/web/typo3conf/ext/ep_theme/Resources/Private/Partials/FacebookPixelCode.html +++ b/web/typo3conf/ext/ep_theme/Resources/Private/Partials/FacebookPixelCode.html @@ -10,7 +10,7 @@ fbq('init', '1669863793235509'); fbq('track', 'PageView'); - fbq('track', 'ViewContent', { content_ids: [ {viewContent.productUid} ], content_name: '{viewContent.nameInternal}', content_type: 'product' }); + fbq('track', 'ViewContent', { content_ids: [ {viewContent.productUid} ], content_name: '{viewContent.nameInternal -> f:format.htmlentitiesDecode()}', content_type: 'product' });