Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
franzholz committed Dec 12, 2024
1 parent 8b6232e commit 2d47c46
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Classes/Api/Start.php
Original file line number Diff line number Diff line change
Expand Up @@ -368,11 +368,12 @@ static public function render (
$lConf = $confScript;
$gatewayExtKey = $confScript['extName'] ?? '';
$ok = static::checkLoaded($errorMessage, $languageObj, $gatewayExtKey);
$paymentMethod = $confScript['paymentMethod'];
$paymentMethod = $confScript['paymentMethod'] ?? '';

if (
$ok &&
$errorMessage == ''
$errorMessage == '' &&
$paymentMethod != ''
) {
$gatewayProxyObject =
PaymentApi::getGatewayProxyObject(
Expand Down

0 comments on commit 2d47c46

Please sign in to comment.