WHMCS no longer errors due to syntax error
This commit is contained in:
parent
0e9529a8d2
commit
4d01eba23f
1 changed files with 2 additions and 2 deletions
|
@ -418,7 +418,7 @@ class WebsitePanel
|
||||||
$esUrl = (($this->_esUseSsl ? "https" : "http") . "://{$this->_esServerUrl}:{$this->_esServerPort}/{$serviceFile}?WSDL");
|
$esUrl = (($this->_esUseSsl ? "https" : "http") . "://{$this->_esServerUrl}:{$this->_esServerPort}/{$serviceFile}?WSDL");
|
||||||
$soapParams = array('login' => $this->_esUsername,
|
$soapParams = array('login' => $this->_esUsername,
|
||||||
'password' => $this->_esPassword,
|
'password' => $this->_esPassword,
|
||||||
'cache_wsdl' => WSDL_CACHE_NONE, // WSDL caching is an annoying nightmare - we will disable it
|
'cache_wsdl' => WSDL_CACHE_NONE // WSDL caching is an annoying nightmare - we will disable it
|
||||||
);
|
);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
@ -432,7 +432,7 @@ class WebsitePanel
|
||||||
}
|
}
|
||||||
catch (Exception $e)
|
catch (Exception $e)
|
||||||
{
|
{
|
||||||
throw;
|
throw new Exception($e->getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue