summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Kinkade <nkinkade@nkinka.de>2009-04-04 02:05:06 +0000
committerNathan Kinkade <nkinkade@nkinka.de>2009-04-04 02:05:06 +0000
commitc64682146ca9420b987ab92f4a3ad22740d05e8a (patch)
treed08b34459e8edec6dbcb7c5cc721a21d992f77f4
parent40f32811778ff1327eecadca3e067ea2d786c9be (diff)
Set default text width to 80 characters which seems to be more inline with Gmail, and therefore will make lots of replies look a lot better since Google is dominating the known world.
-rw-r--r--roundcubemail/program/steps/mail/compose.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/steps/mail/compose.inc b/roundcubemail/program/steps/mail/compose.inc
index 1b83b1ed4..36e843d1f 100644
--- a/roundcubemail/program/steps/mail/compose.inc
+++ b/roundcubemail/program/steps/mail/compose.inc
@@ -468,7 +468,7 @@ function rcmail_create_reply_body($body, $bodyIsHtml)
}
// soft-wrap message first
- $body = rcmail_wrap_quoted($body, 75);
+ $body = rcmail_wrap_quoted($body, 80);
$body = rtrim($body, "\r\n");