🐛 fix bug: double escaping of \n
This commit is contained in:
parent
8863bbeed0
commit
e5ab52f24b
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue