Preorder trigger: Fixed not replacing CIFTOKEN in cifurl

This commit is contained in:
Frank Schubert
2024-04-23 15:11:51 +02:00
parent 63d2e2508d
commit 6289d21eb1
+1 -1
View File
@@ -438,7 +438,7 @@ class Preorder extends mfBaseModel {
$campaign = $this->getProperty("campaign");
$cifurl = $campaign->cifurl;
str_replace("{{CIFTOKEN}}", $this->ciftoken, $cifurl);
$cifurl = str_replace("{{CIFTOKEN}}", $this->ciftoken, $cifurl);
return $cifurl;
}