From: Michael M Slusarz Date: Sat, 11 Sep 2010 17:05:11 +0000 (-0600) Subject: Ticket #9241: Make it clear that dashes only appears before text signature X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=3d5433806251d1e14d73fb2f5abf8347cf07389d;p=horde.git Ticket #9241: Make it clear that dashes only appears before text signature --- diff --git a/imp/config/prefs.php.dist b/imp/config/prefs.php.dist index beb8a4a9c..29cb29d02 100644 --- a/imp/config/prefs.php.dist +++ b/imp/config/prefs.php.dist @@ -13,7 +13,7 @@ $prefGroups['identities'] = array( 'desc' => _("Change the name, address, and signature that people see when they read and reply to your email."), 'members' => array( 'replyto_addr', 'alias_addr', 'tieto_addr', 'bcc_addr', 'signature', - 'signature_html_select', 'sig_dashes', 'sig_first', 'save_sent_mail', + 'sig_dashes', 'signature_html_select', 'sig_first', 'save_sent_mail', 'sent_mail_folder', 'sentmailselect' ), 'type' => 'identities' @@ -54,6 +54,13 @@ $_prefs['signature'] = array( 'desc' => _("Your signature:") ); +// precede the text signature with dashes ('-- ')? +$_prefs['sig_dashes'] = array( + 'value' => 0, + 'type' => 'checkbox', + 'desc' => _("Precede your text signature with dashes ('-- ')?") +); + // User's HTML signature - UI widget $_prefs['signature_html_select'] = array( 'type' => 'special' @@ -64,13 +71,6 @@ $_prefs['signature_html'] = array( 'value' => '' ); -// precede the signature with dashes ('-- ')? -$_prefs['sig_dashes'] = array( - 'value' => 0, - 'type' => 'checkbox', - 'desc' => _("Precede your signature with dashes ('-- ')?") -); - // signature before replies and forwards? $_prefs['sig_first'] = array( 'value' => 0,