🐛 fix bug: double escaping of \n

This commit is contained in:
Marc Michalsky 2023-08-14 17:20:24 +02:00
parent 8863bbeed0
commit e5ab52f24b
Signed by untrusted user who does not match committer: marc.koch
GPG key ID: 12406554CFB028B9

View file

@ -69,7 +69,7 @@ class CRM_TwingleCampaign_Utils_MatomoSnippet {
* The combined code after appending the appendix.
*/
public static function append_code($original, $appendix) {
return $original . '\n' . $appendix;
return $original . $appendix;
}
}