diff options
author | thomascube <thomas@roundcube.net> | 2008-02-08 15:13:12 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-02-08 15:13:12 +0000 |
commit | b89d5a816b161a08bd21ee8f33b6c7af1157c523 (patch) | |
tree | 5196bfb41ed0547eb13f04dd459f3cc229d921f3 /program/steps | |
parent | 606fc01355c349916716cbb16255353366cade68 (diff) |
Fix ugly type as suggested in #1484760
Diffstat (limited to 'program/steps')
-rw-r--r-- | program/steps/settings/func.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/program/steps/settings/func.inc b/program/steps/settings/func.inc index e63f01620..de411e76a 100644 --- a/program/steps/settings/func.inc +++ b/program/steps/settings/func.inc @@ -254,7 +254,8 @@ function get_form_tags($attrib, $action, $add_hidden=array()) // register UI objects $OUTPUT->add_handlers(array( 'userprefs' => 'rcmail_user_prefs_form', - 'itentitieslist' => 'rcmail_identities_list' + 'identitieslist' => 'rcmail_identities_list', + 'itentitieslist' => 'rcmail_identities_list' // keep this for backward compatibility )); |