Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2016-07-21 17:47:47 +0300
committerAleksander Machniak <alec@alec.pl>2016-07-21 17:47:47 +0300
commitd91bad5975cf7a513b178520f0d5c2d740e371ea (patch)
tree4d8acc8887ae0a622fdc9091703b1ed9bac41aac /tests
parent7a7a6795f0750ed278fc7191938c34a5a1b5587f (diff)
Fix handling of blockquote tags with mixed case on html2text conversion (#5363)
Diffstat (limited to 'tests')
-rw-r--r--tests/Framework/Html2text.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Framework/Html2text.php b/tests/Framework/Html2text.php
index be1488295..889ba8241 100644
--- a/tests/Framework/Html2text.php
+++ b/tests/Framework/Html2text.php
@@ -79,7 +79,7 @@ class rc_html2text extends PHPUnit_Framework_TestCase
{
$html = <<<EOF
<br>Begin<br><blockquote>OUTER BEGIN<blockquote>INNER 1<br></blockquote><div><br></div><div>Par 1</div>
-<blockquote>INNER 2</blockquote><div><br></div><div>Par 2</div>
+<blockQuote>INNER 2</blockquote><div><br></div><div>Par 2</div>
<div><br></div><div>Par 3</div><div><br></div>
<blockquote>INNER 3</blockquote>OUTER END</blockquote>
EOF;