summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-04-10 11:58:55 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-04-10 11:58:55 +0000
commit124b7f7c4292ae2c82ec0ad97339c55cb4a0f125 (patch)
treeed40f81148a22442659364a90b16e6a865c14dee
parenta88d13c30e5b25a3416df7e97a24b995576e73a8 (diff)
- removed lines wrapping
git-svn-id: https://svn.roundcube.net/trunk@1279 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/program/steps/mail/func.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/steps/mail/func.inc b/roundcubemail/program/steps/mail/func.inc
index 500148bf0..af3618112 100644
--- a/roundcubemail/program/steps/mail/func.inc
+++ b/roundcubemail/program/steps/mail/func.inc
@@ -679,8 +679,8 @@ function rcmail_print_body($part, $safe=FALSE, $plain=FALSE)
$convert_patterns[] = '/([a-z0-9][a-z0-9\-\.\+\_]*@[a-z0-9]([a-z0-9\-][.]?)*[a-z0-9]\\.[a-z]{2,5})/ie';
$convert_replaces[] = "rcmail_str_replacement('<a href=\"mailto:\\1\" onclick=\"return ".JS_OBJECT_NAME.".command(\'compose\',\'\\1\',this)\">\\1</a>', \$replace_strings)";
- if ($part->ctype_parameters['format'] != 'flowed')
- $body = wordwrap(trim($body), 80);
+// if ($part->ctype_parameters['format'] != 'flowed')
+// $body = wordwrap(trim($body), 80);
$body = preg_replace($convert_patterns, $convert_replaces, $body);