X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Flibs%2Fwernis_functions.php;h=db99fbdfb43243063b89f51d1c2c363a4ffef6ca;hp=3419416228eeb07ddd46f6a8cd0afc9e02fbe1b8;hb=330dbb3e2b34450cd1665497506455e195a0a166;hpb=18eb87f5ec1182966e2ff5ef128a379330534f80 diff --git a/inc/libs/wernis_functions.php b/inc/libs/wernis_functions.php index 3419416228..db99fbdfb4 100644 --- a/inc/libs/wernis_functions.php +++ b/inc/libs/wernis_functions.php @@ -53,7 +53,7 @@ function GET_WERNIS_ERROR_MESSAGE () { return $GLOBALS['wernis_data']['message']; } elseif (isset($GLOBALS['wernis_data']['status'])) { // Fall-back to status - return getMaskedMessage('WERNIS_ERROR_STATUS', $GLOBALS['wernis_data']['status']); + return '{%message,WERNIS_ERROR_STATUS=' . $GLOBALS['wernis_data']['status'] . '%}'; } else { // Something bad happend return '{--WERNIS_UNKNOWN_ERROR--}'; @@ -115,7 +115,7 @@ function WERNIS_SEND_REQUEST ($scriptName, $requestData = array()) { // Something bad happend... :( return array( 'status' => 'request_error', - 'message' => getMaskedMessage('WERNIS_API_REQUEST_ERROR', $response[0]) + 'message' => '{%message,WERNIS_API_REQUEST_ERROR=' . $response[0] . '%}' ); } // END - if @@ -193,7 +193,7 @@ function WERNIS_SEND_REQUEST ($scriptName, $requestData = array()) { logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown error %s from WDS66 API received.", $data[1])); $return = array( 'status' => 'request_failed', - 'message' => getMaskedMessage('WERNIS_API_REQUEST_FAILED', $data[1]) + 'message' => '{%message,WERNIS_API_REQUEST_FAILED=' . $data[1] . '%}' ); break; } @@ -317,7 +317,7 @@ function WERNIS_EXECUTE_PAYOUT ($wdsId, $amount) { // Translate the status IN/OUT function translateWernisTransferStatus ($status) { // Default status - $return = getMaskedMessage('WERNIS_STATUS_UNKNWOWN', $status); + $return = '{%message,WERNIS_STATUS_UNKNWOWN=' . $status . '%}'; // Which status? switch ($status) {