From 29e9182fcdbed355b6374bc19e12734893d8efe0 Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Wed, 18 Jun 2014 20:22:13 -0400 Subject: [PATCH] Fixed syntax error... grumble grumble --- airtime_mvc/application/controllers/WhmcsLoginController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/application/controllers/WhmcsLoginController.php b/airtime_mvc/application/controllers/WhmcsLoginController.php index abb31019f..0f0e327de 100644 --- a/airtime_mvc/application/controllers/WhmcsLoginController.php +++ b/airtime_mvc/application/controllers/WhmcsLoginController.php @@ -84,7 +84,7 @@ class WHMCS_Auth_Adapter implements Zend_Auth_Adapter_Interface { } function authenticate() { - list($credentialsValid, $clientId) = $this->validateCredentialsWithWHMCS($this->email, $this->password)) + list($credentialsValid, $clientId) = $this->validateCredentialsWithWHMCS($this->email, $this->password); if (!$credentialsValid) { return new Zend_Auth_Result(Zend_Auth_Result::FAILURE_CREDENTIAL_INVALID, null);