mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-13 03:26:48 +01:00
Fix flowed lines recognition
This commit is contained in:
@@ -163,7 +163,7 @@ class rcube_text2html
|
||||
// find/mark quoted lines...
|
||||
for ($n=0, $cnt=count($text); $n < $cnt; $n++) {
|
||||
$flowed = false;
|
||||
if ($this->config['flowed'] && ord($text[0]) == $flowed_char) {
|
||||
if ($this->config['flowed'] && ord($text[$n][0]) == $flowed_char) {
|
||||
$flowed = true;
|
||||
$text[$n] = substr($text[$n], 1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user