Aleksander Machniak
2014-05-12 e0881f985d558a1084ccc1c50702c4867b94f4c1
Disable wrapping non-flowed lines on dash character
1 files modified
3 ■■■■ changed files
program/lib/Roundcube/rcube_text2html.php 3 ●●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_text2html.php
@@ -275,7 +275,8 @@
            $text = $copy;
        }
        else {
            $text = str_replace(' ', $nbsp, $text);
            // make the whole line non-breakable
            $text = str_replace(array(' ', '-'), array($nbsp, '-⁠'), $text);
        }
        return $text;