fix explicit manager bug

bug would make script apply anyway, even if no manager is found
This commit is contained in:
MaxBUhe 2023-05-31 14:29:46 +02:00
parent 13132e6da0
commit 8d13a9fc85
1 changed files with 1 additions and 1 deletions

View File

@ -48,6 +48,6 @@ class ManagerHandler
$oManagerTypes = oxNew(ManagerTypes::class);
return $oManagerTypes->isManagerInList($sPotentialManagerName)
? $sPotentialManagerName
: ManagerTypes::EXTERNAL_SERVICE;
: "NONE";
}
}