do not escape html in embed codes

This commit is contained in:
Marc Michalsky forumZFD 2020-12-10 15:27:21 +01:00
parent 905d791f1a
commit 4921345b88
Signed by untrusted user who does not match committer: marc.koch
GPG key ID: 12406554CFB028B9
2 changed files with 1 additions and 21 deletions

View file

@ -342,7 +342,7 @@ class CRM_TwingleCampaign_BAO_TwingleProject extends Campaign {
// Transfer all embed_data values
foreach ($embed_data_keys as $key) {
$this->values[$key] = htmlspecialchars($embedData[$key]);
$this->values[$key] = $embedData[$key];
}
}