Ticket #9241: Make it clear that dashes only appears before text signature
authorMichael M Slusarz <slusarz@curecanti.org>
Sat, 11 Sep 2010 17:05:11 +0000 (11:05 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Sat, 11 Sep 2010 17:05:53 +0000 (11:05 -0600)
imp/config/prefs.php.dist

index beb8a4a..29cb29d 100644 (file)
@@ -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,