Syntax error fix
This commit is contained in:
parent
1ab30c26e6
commit
1d43200041
|
@ -147,7 +147,7 @@ class UserController extends Zend_Controller_Action
|
||||||
// The reason is because we use that as a password placeholder
|
// The reason is because we use that as a password placeholder
|
||||||
// on the client side.
|
// on the client side.
|
||||||
if (($formData['cu_password'] != "xxxxxx") &&
|
if (($formData['cu_password'] != "xxxxxx") &&
|
||||||
(!empty($formData['cu_password'])) {
|
(!empty($formData['cu_password']))) {
|
||||||
$user->setPassword($formData['cu_password']);
|
$user->setPassword($formData['cu_password']);
|
||||||
}
|
}
|
||||||
$user->setEmail($formData['cu_email']);
|
$user->setEmail($formData['cu_email']);
|
||||||
|
|
Loading…
Reference in New Issue