diff --git a/account.php b/account.php index e8bcaf07a0270ef61c18cd300e42ada49391449f..9cb8db2327fd42da4d922ed11e0ec9c2923f6251 100644 --- a/account.php +++ b/account.php @@ -29,10 +29,12 @@ if (!$cfg || !$cfg->isClientRegistrationEnabled()) { elseif ($thisclient) { // Guest registering for an account if ($thisclient->isGuest()) { - foreach ($thisclient->getForms() as $f) - if ($f->get('type') == 'U') + foreach ($thisclient->getForms() as $f) { + if ($f->get('type') == 'U') { $user_form = $f; - $user_form->getField('email')->configure('disabled', true); + $user_form->getField('email')->configure('disabled', true); + } + } } // Existing client (with an account) updating profile else {