diff options
author | thomascube <thomas@roundcube.net> | 2005-10-13 22:13:11 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2005-10-13 22:13:11 +0000 |
commit | 455c2bd934e0dd708244e9e1c9fc7acd5d7b37e7 (patch) | |
tree | 06b9c82e0522c1b8b3f60507fa4456d736b3eec6 /skins/default/includes/settingscripts.html | |
parent | 09941ea763db08c7b13263fae68cf6eb01bc7bcf (diff) |
Fixed bug #1315992
Diffstat (limited to 'skins/default/includes/settingscripts.html')
-rw-r--r-- | skins/default/includes/settingscripts.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/skins/default/includes/settingscripts.html b/skins/default/includes/settingscripts.html index b7699708d..9ee93cda5 100644 --- a/skins/default/includes/settingscripts.html +++ b/skins/default/includes/settingscripts.html @@ -1,7 +1,10 @@ <script type="text/javascript"> if (window.rcmail && rcmail.env.action) - var tab = document.getElementById('settingstab'+rcmail.env.action); + { + var action = rcmail.env.action=='preferences' ? 'default' : (rcmail.env.action.indexOf('identity')>0 ? 'identities' : rcmail.env.action); + var tab = document.getElementById('settingstab'+action); + } else var tab = document.getElementById('settingstabdefault'); |