summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-02-08 15:13:12 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-02-08 15:13:12 +0000
commit3d42617781b72fc95e99e6326b0819e9232a856b (patch)
tree179c1634c8ee250af367348a4c9e8ad9bdaa23a8
parent2bc86bed8f1af868e4195111ff1187f24e8842e3 (diff)
Fix ugly type as suggested in #1484760
git-svn-id: https://svn.roundcube.net/trunk@1029 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/program/steps/settings/func.inc3
-rw-r--r--roundcubemail/skins/default/templates/addidentity.html2
-rw-r--r--roundcubemail/skins/default/templates/editidentity.html2
-rw-r--r--roundcubemail/skins/default/templates/identities.html2
4 files changed, 5 insertions, 4 deletions
diff --git a/roundcubemail/program/steps/settings/func.inc b/roundcubemail/program/steps/settings/func.inc
index e63f01620..de411e76a 100644
--- a/roundcubemail/program/steps/settings/func.inc
+++ b/roundcubemail/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/roundcubemail/skins/default/templates/addidentity.html b/roundcubemail/skins/default/templates/addidentity.html
index d38d80642..8162d1cdd 100644
--- a/roundcubemail/skins/default/templates/addidentity.html
+++ b/roundcubemail/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/roundcubemail/skins/default/templates/editidentity.html b/roundcubemail/skins/default/templates/editidentity.html
index 4fb087d40..04a3e8b39 100644
--- a/roundcubemail/skins/default/templates/editidentity.html
+++ b/roundcubemail/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/roundcubemail/skins/default/templates/identities.html b/roundcubemail/skins/default/templates/identities.html
index 7e311cc7f..f9f3436ef 100644
--- a/roundcubemail/skins/default/templates/identities.html
+++ b/roundcubemail/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>