You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dotpay extension version: 3.1.0
OC version: 3.0.3.2
Issue: When optional API credentials aren't set in extension settings and user choose cash or transfer method payments then request to extension/payment/dotpay_next/preparing ends with Fatal error
Reason: $payment = $this->RegisterOrder->create($hiddenFields); (/catalog/controller/extension/payment/dotpay_next.php#L142) returns false.
Next line checks for $payment !== null, so condition is true despite $payment being false. As a result $this->model_extension_payment_dotpay_info->addInstruction ends with Fatal error
The text was updated successfully, but these errors were encountered:
Dotpay extension version: 3.1.0
OC version: 3.0.3.2
Issue: When optional API credentials aren't set in extension settings and user choose cash or transfer method payments then request to
extension/payment/dotpay_next/preparing
ends with Fatal errorReason:
$payment = $this->RegisterOrder->create($hiddenFields);
(/catalog/controller/extension/payment/dotpay_next.php#L142) returns false.Next line checks for
$payment !== null
, so condition is true despite$payment
beingfalse
. As a result$this->model_extension_payment_dotpay_info->addInstruction
ends with Fatal errorThe text was updated successfully, but these errors were encountered: