Better error handling if the WHMCS API call for GTM code generation
fails
This commit is contained in:
parent
0d9cf2485e
commit
f07e3b65eb
|
@ -453,6 +453,11 @@ class ShowbuilderController extends Zend_Controller_Action
|
||||||
|
|
||||||
$arr = json_decode($jsondata); # Decode JSON String
|
$arr = json_decode($jsondata); # Decode JSON String
|
||||||
|
|
||||||
|
if ($arr->result !== "success") {
|
||||||
|
Logging::warning("WHMCS API call failed in " . __FUNCTION__);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$client = $arr->client;
|
$client = $arr->client;
|
||||||
$stats = $arr->stats;
|
$stats = $arr->stats;
|
||||||
$currencyCode = $client->currency_code;
|
$currencyCode = $client->currency_code;
|
||||||
|
|
Loading…
Reference in New Issue