Syntax error fix

This commit is contained in:
Albert Santoni 2014-08-01 15:46:08 -04:00
parent 1ab30c26e6
commit 1d43200041
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ class UserController extends Zend_Controller_Action
// The reason is because we use that as a password placeholder
// on the client side.
if (($formData['cu_password'] != "xxxxxx") &&
(!empty($formData['cu_password'])) {
(!empty($formData['cu_password']))) {
$user->setPassword($formData['cu_password']);
}
$user->setEmail($formData['cu_email']);