From b622f669031606c9a65d7b2a33eeb0e12eb5e340 Mon Sep 17 00:00:00 2001 From: Frank Schubert Date: Fri, 5 Sep 2025 14:05:13 +0200 Subject: [PATCH] Fixed cifurl creation in PreorderLogistics --- application/Preorderlogistics/PreorderlogisticsController.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/application/Preorderlogistics/PreorderlogisticsController.php b/application/Preorderlogistics/PreorderlogisticsController.php index 28ff20e89..eee34b7f3 100644 --- a/application/Preorderlogistics/PreorderlogisticsController.php +++ b/application/Preorderlogistics/PreorderlogisticsController.php @@ -208,17 +208,14 @@ class PreorderlogisticsController extends mfBaseController { * generate QR code */ if(!$preorder->ciftoken) { - echo "Generating ciftoken\n"; $preorder->createCiftoken(); $preorder->save(); } if(!$preorder->cifurl) { - echo "Generating cifurl\n"; $preorder->cifurl = $preorder->generateCifUrl(); $preorder->save(); } if(!$preorder->cifcableurl) { - echo "Generating cifcableurl\n"; $preorder->cifcableurl = $preorder->generateCifCableUrl(); $preorder->save(); }