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
{{ message }}
This repository has been archived by the owner on Mar 12, 2021. It is now read-only.
Maybe try creating an SCCEE to illustrate this issue?
Going through the codebase, it seems 481 is handled as Declined:
// was it a successful transaction?
// any response code greater than 49 is an error code:
if ((int) $receipt->ResponseCode >= 50 || (int) $receipt->ResponseCode == 0) {
// trying to make some sense of this... grouping them as best as I can:
switch ($receipt->ResponseCode) {
// ...
case '481':
case '483':
$this->error_code(Moneris_Result::ERROR_DECLINED);
break;
// ...
}
return $this->was_successful(false);
}
as the title goes the transaction still was_successful() even though the response code was 481, DECLINED.
using version 0.1.1
The text was updated successfully, but these errors were encountered: