Dennis1993
2013-07-26 4bf322d256d0460a2df5c03b1e173f6ccd9a6eb3
program/lib/Roundcube/rcube_html2text.php
@@ -597,9 +597,16 @@
                    // get blockquote content
                    $body = trim(substr($text, $startpos, $end - $startpos));
                    // adjust text wrapping width
                    $p_width = $this->width;
                    if ($this->width > 0) $this->width -= 2;
                    // replace content with inner blockquotes
                    $this->_converter($body);
                    // resore text width
                    $this->width = $p_width;
                    // Add citation markers and create <pre> block
                    $body = preg_replace_callback('/((?:^|\n)>*)([^\n]*)/', array($this, 'blockquote_citation_ballback'), trim($body));
                    $body = '<pre>' . htmlspecialchars($body) . '</pre>';