X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Femail.php;fp=include%2Femail.php;h=43f04d7c2010f27f7d0ebcdfd4562322b7111c9d;hb=8a1f175df022e2fc2c2162aa314ea34454482d48;hp=a3449a4249934bd965f49c031cb3d8cb90ad77e5;hpb=b5120888cf6e3aac29aa2a8d80bddcab73822e1e;p=friendica.git diff --git a/include/email.php b/include/email.php index a3449a4249..43f04d7c20 100755 --- a/include/email.php +++ b/include/email.php @@ -74,7 +74,7 @@ function email_msg_headers($mbox,$uid) { } -function email_get_msg($mbox,$uid) { +function email_get_msg($mbox,$uid, $reply) { $ret = array(); $struc = (($mbox && $uid) ? @imap_fetchstructure($mbox,$uid,FT_UID) : null); @@ -114,7 +114,7 @@ function email_get_msg($mbox,$uid) { $ret['body'] = removegpg($ret['body']); $msg = removesig($ret['body']); $ret['body'] = $msg['body']; - $ret['body'] = convertquote($ret['body'], false); + $ret['body'] = convertquote($ret['body'], $reply); if (trim($html) != '') $ret['body'] = removelinebreak($ret['body']);