mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-27 10:23:28 +01:00
* Mail: equal sign followed by numbers is mangled in plain-text mails (e.g. =22 becomes a ")
If we detected qprint encoding in the plain-text body of a composed mail (not an arrived mail!), we wrongly decoded it.
This commit is contained in:
parent
044b57a813
commit
549e023998
@ -2496,11 +2496,6 @@ class mail_compose
|
||||
|
||||
$_mailObject->addHeader('Subject', $_formData['subject']);
|
||||
|
||||
// this should never happen since we come from the edit dialog
|
||||
if (Mail::detect_qp($_formData['body'])) {
|
||||
$_formData['body'] = preg_replace('/=\r\n/', '', $_formData['body']);
|
||||
$_formData['body'] = quoted_printable_decode($_formData['body']);
|
||||
}
|
||||
$disableRuler = false;
|
||||
$signature = $_identity['ident_signature'];
|
||||
$sigAlreadyThere = $this->mailPreferences['insertSignatureAtTopOfMessage']!='no_belowaftersend'?1:0;
|
||||
|
Loading…
Reference in New Issue
Block a user