Thomas Bruederli
2014-02-04 a7d42915a4416c37a2c30e8372e54aacafa84444
Fix infinite loop when converting invalid html to plaintext (#1489566)
1 files modified
4 ■■■■ changed files
program/lib/Roundcube/rcube_html2text.php 4 ●●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_html2text.php
@@ -616,6 +616,10 @@
                    break;
                }
                // abort on invalid tag structure (e.g. no closing tag found)
                else {
                    break;
                }
            }
            while ($end || $next);
        }