diff options
-rw-r--r-- | program/steps/settings/func.inc | 3 | ||||
-rw-r--r-- | skins/default/templates/addidentity.html | 2 | ||||
-rw-r--r-- | skins/default/templates/editidentity.html | 2 | ||||
-rw-r--r-- | skins/default/templates/identities.html | 2 |
4 files changed, 5 insertions, 4 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 )); diff --git a/skins/default/templates/addidentity.html b/skins/default/templates/addidentity.html index d38d80642..8162d1cdd 100644 --- a/skins/default/templates/addidentity.html +++ b/skins/default/templates/addidentity.html @@ -13,7 +13,7 @@ <div id="identities-list"> -<roundcube:object name="itentitiesList" id="identities-table" class="records-table" cellspacing="0" summary="Identities list" editIcon="" /> +<roundcube:object name="identitiesList" id="identities-table" class="records-table" cellspacing="0" summary="Identities list" editIcon="" /> <p><roundcube:button command="add" type="input" label="newidentity" class="button" /></p> diff --git a/skins/default/templates/editidentity.html b/skins/default/templates/editidentity.html index 4fb087d40..04a3e8b39 100644 --- a/skins/default/templates/editidentity.html +++ b/skins/default/templates/editidentity.html @@ -13,7 +13,7 @@ <div id="identities-list"> -<roundcube:object name="itentitiesList" id="identities-table" class="records-table" cellspacing="0" summary="Identities list" editIcon="" /> +<roundcube:object name="identitiesList" id="identities-table" class="records-table" cellspacing="0" summary="Identities list" editIcon="" /> <p><roundcube:button command="add" type="input" label="newidentity" class="button" /></p> diff --git a/skins/default/templates/identities.html b/skins/default/templates/identities.html index 7e311cc7f..f9f3436ef 100644 --- a/skins/default/templates/identities.html +++ b/skins/default/templates/identities.html @@ -12,7 +12,7 @@ <roundcube:include file="/includes/settingstabs.html" /> <div id="identities-list"> -<roundcube:object name="itentitiesList" id="identities-table" class="records-table" cellspacing="0" summary="Identities list" editIcon="" /> +<roundcube:object name="identitiesList" id="identities-table" class="records-table" cellspacing="0" summary="Identities list" editIcon="" /> <p><roundcube:button command="add" type="input" label="newidentity" class="button" /></p> </div> |