mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
fixed messed up signature changing from / mail-accounts
also fixed some undefined warnings
This commit is contained in:
parent
3777ba7691
commit
df938c79de
@ -5514,7 +5514,7 @@ class Mail
|
||||
continue;
|
||||
}
|
||||
|
||||
if ($singleBodyPart['charSet']===false) $singleBodyPart['charSet'] = Translation::detect_encoding($singleBodyPart['body']);
|
||||
if (empty($singleBodyPart['charSet'])) $singleBodyPart['charSet'] = Translation::detect_encoding($singleBodyPart['body']);
|
||||
$singleBodyPart['body'] = Translation::convert(
|
||||
$singleBodyPart['body'],
|
||||
strtolower($singleBodyPart['charSet'])
|
||||
|
@ -671,7 +671,7 @@ class mail_compose
|
||||
$content['body'] = $content['body'] ?? $content['mail_'.($content['mimeType'] === 'html'?'html':'plain').'text'] ??
|
||||
($content['mimeType'] === 'html' ? '<br>' : '');
|
||||
unset($_content['body'], $_content['mail_htmltext'], $_content['mail_plaintext']);
|
||||
$_currentMode = $_content['mimeType'];
|
||||
$_currentMode = $_content['mimeType'] && $_content['mimeType'] !== 'plain' ? 'html' : 'plain';
|
||||
|
||||
// we have to keep comments to be able to changing signatures
|
||||
// signature is wraped in "<!-- HTMLSIGBEGIN -->$signature<!-- HTMLSIGEND -->"
|
||||
@ -707,7 +707,7 @@ class mail_compose
|
||||
|
||||
if ($_oldSig != $_signatureid)
|
||||
{
|
||||
if($this->_debug) error_log(__METHOD__.__LINE__.' old,new ->'.$_oldSig.','.$_signatureid.'#'.$content['body']);
|
||||
if(Mail::$debug) error_log(__METHOD__.__LINE__.' old,new ->'.$_oldSig.','.$_signatureid.'#'.$content['body']);
|
||||
// prepare signatures, the selected sig may be used on top of the body
|
||||
try
|
||||
{
|
||||
@ -737,7 +737,7 @@ class mail_compose
|
||||
{
|
||||
$oldSigText = $this->convertHTMLToText($oldSigText,true,true);
|
||||
$sigText = $this->convertHTMLToText($sigText,true,true);
|
||||
if($this->_debug) error_log(__METHOD__." Old signature:".$oldSigText);
|
||||
if(Mail::$debug) error_log(__METHOD__." Old signature:".$oldSigText);
|
||||
}
|
||||
|
||||
//$oldSigText = Mail::merge($oldSigText,array($GLOBALS['egw']->accounts->id2name($GLOBALS['egw_info']['user']['account_id'],'person_id')));
|
||||
@ -798,8 +798,8 @@ class mail_compose
|
||||
|
||||
if ($found === false)
|
||||
{
|
||||
if($this->_debug) error_log(__METHOD__." Old Signature failed to match:".$oldSigTextCleaned);
|
||||
if($this->_debug) error_log(__METHOD__." Compare content:".$content['body']);
|
||||
if(Mail::$debug) error_log(__METHOD__." Old Signature failed to match:".$oldSigTextCleaned);
|
||||
if(Mail::$debug) error_log(__METHOD__." Compare content:".$content['body']);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user