summaryrefslogtreecommitdiff
path: root/roundcubemail/program/steps/settings
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-12-09 19:10:44 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-12-09 19:10:44 +0000
commit2028fe19ca61befd1b69be8a354ae9706c204d0c (patch)
tree17d5a20ffbef64d7b5c8441613adf5ee2724551a /roundcubemail/program/steps/settings
parent16ad3b8df6512866a3b26ea313841cb62be567e4 (diff)
- Improved Mail-Reply-To and Mail-Followup-To headers handling
git-svn-id: https://svn.roundcube.net/trunk@4328 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/settings')
-rw-r--r--roundcubemail/program/steps/settings/edit_identity.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/roundcubemail/program/steps/settings/edit_identity.inc b/roundcubemail/program/steps/settings/edit_identity.inc
index ef2be6584..f458cbfee 100644
--- a/roundcubemail/program/steps/settings/edit_identity.inc
+++ b/roundcubemail/program/steps/settings/edit_identity.inc
@@ -126,7 +126,8 @@ function rcube_identity_form($attrib)
foreach ($fieldset['content'] as $col => $colprop) {
$colprop['id'] = 'rcmfd_'.$col;
- $label = !empty($colprop['label']) ? $colprop['label'] : rcube_label($col);
+ $label = !empty($colprop['label']) ? $colprop['label'] :
+ rcube_label(str_replace('-', '', $col));
$value = !empty($colprop['value']) ? $colprop['value'] :
rcmail_get_edit_field($col, $IDENTITY_RECORD[$col], $colprop, $colprop['type']);