Aleksander Machniak
2016-05-22 0344b168276f80189e2254c75a762aff5b517b6b
program/lib/Roundcube/rcube_text2html.php
@@ -270,6 +270,10 @@
        if (empty($table)) {
            $table = get_html_translation_table(HTML_SPECIALCHARS);
            unset($table['?']);
            // replace some whitespace characters
            $table["\r"] = '';
            $table["\t"] = '    ';
        }
        // skip signature separator
@@ -277,11 +281,8 @@
            return '--' . $this->config['space'];
        }
        // replace HTML special characters
        // replace HTML special and whitespace characters
        $text = strtr($text, $table);
        // replace some whitespace characters
        $text = str_replace(array("\r", "\t"), array('', '    '), $text);
        $nbsp = $this->config['space'];