Fixed syntax error... grumble grumble

This commit is contained in:
Albert Santoni 2014-06-18 20:22:13 -04:00
parent 76659c80c4
commit 29e9182fcd
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ class WHMCS_Auth_Adapter implements Zend_Auth_Adapter_Interface {
} }
function authenticate() { function authenticate() {
list($credentialsValid, $clientId) = $this->validateCredentialsWithWHMCS($this->email, $this->password)) list($credentialsValid, $clientId) = $this->validateCredentialsWithWHMCS($this->email, $this->password);
if (!$credentialsValid) if (!$credentialsValid)
{ {
return new Zend_Auth_Result(Zend_Auth_Result::FAILURE_CREDENTIAL_INVALID, null); return new Zend_Auth_Result(Zend_Auth_Result::FAILURE_CREDENTIAL_INVALID, null);