fixed breaking of signatures when sending emails

This commit is contained in:
Lars Kneschke 2007-10-05 03:47:49 +00:00
parent 2c66992d1d
commit b1c111db85

View File

@ -157,6 +157,11 @@
$text = html_entity_decode($text, ENT_COMPAT, $this->displayCharset); $text = html_entity_decode($text, ENT_COMPAT, $this->displayCharset);
$pos = strpos($text, 'blockquote');
if($pos === false) {
$asciiText = $text;
} else {
$indent = 0; $indent = 0;
$indentString = ''; $indentString = '';
$asciiText = ''; $asciiText = '';
@ -184,6 +189,7 @@
} }
} }
} }
}
return $asciiText; return $asciiText;
} }