Browse code

Fix possible type error in WeinanlieferungBookedListModuleController

Benjamin Roth authored on01/09/2025 10:51:06
Showing1 changed files
... ...
@@ -67,7 +67,7 @@ class WeinanlieferungBookedListModuleController extends AbstractFrontendModuleCo
67 67
                     $arrSorten = [];
68 68
                     $arrErnteart = [];
69 69
 
70
-                    $SortenLeseart = explode(';',$booking->sorten);
70
+                    $SortenLeseart = explode(';',($booking->sorten ?? ''));
71 71
                     foreach($SortenLeseart as $sorteLeseart)
72 72
                     {
73 73
                         list($sorte,$leseart) = explode(',',$sorteLeseart);