diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-10-13 19:24:27 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-10-13 19:24:27 +0000 |
| commit | c02d0cc86b2b57e1189450b601fd41f0d4f49b1b (patch) | |
| tree | 0dd284d840d33433f88aa9e24a5e1d6cf258d0fe | |
| parent | ce7fa5aaed879a3041a48570cc1b38c1885d577e (diff) | |
- Fix duplicated e-mail field in identity form (#1487054)
git-svn-id: https://svn.roundcube.net/trunk@4085 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/CHANGELOG | 1 | ||||
| -rw-r--r-- | roundcubemail/program/steps/settings/edit_identity.inc | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/roundcubemail/CHANGELOG b/roundcubemail/CHANGELOG index 32631c4e9..0a17e1a74 100644 --- a/roundcubemail/CHANGELOG +++ b/roundcubemail/CHANGELOG @@ -28,6 +28,7 @@ CHANGELOG Roundcube Webmail - Add caching support in id2uid and uid2id functions (#1487019) - Add SASL proxy authentication for SMTP (#1486693) - Improve displaying of UI messages (#1486977) +- Fix double e-mail filed in identity form (#1487054) RELEASE 0.4.2 ------------- diff --git a/roundcubemail/program/steps/settings/edit_identity.inc b/roundcubemail/program/steps/settings/edit_identity.inc index d6af6e52c..89f4dde65 100644 --- a/roundcubemail/program/steps/settings/edit_identity.inc +++ b/roundcubemail/program/steps/settings/edit_identity.inc @@ -90,8 +90,8 @@ function rcube_identity_form($attrib) // disable some field according to access level if (IDENTITIES_LEVEL == 1 || IDENTITIES_LEVEL == 3) { - $form['adressing']['content']['email']['disabled'] = true; - $form['adressing']['content']['email']['class'] = 'disabled'; + $form['addressing']['content']['email']['disabled'] = true; + $form['addressing']['content']['email']['class'] = 'disabled'; } $IDENTITY_RECORD['email'] = idn_to_utf8($IDENTITY_RECORD['email']); |
