Aleksander Machniak
2014-05-12 d41367492dbbd7fdb074cd1374044917fc2e82df
Fix flowed lines recognition
1 files modified
2 ■■■ changed files
program/lib/Roundcube/rcube_text2html.php 2 ●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_text2html.php
@@ -163,7 +163,7 @@
        // 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);
            }