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>2017-11-08 14:38:19 +0300
committerAleksander Machniak <alec@alec.pl>2017-11-08 14:38:19 +0300
commita0374f3c45578b8b51ff1850c00f4f0732e17193 (patch)
tree73ab8aefbc77e74a50c9f6027c15cdd3059cabed /tests
parent968e20c5e5624a1df5dea2fcd792b1f46add3d1a (diff)
Fix mangled non-ASCII characters in links in HTML messages (#6028)
Diffstat (limited to 'tests')
-rw-r--r--tests/Framework/Html.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/Framework/Html.php b/tests/Framework/Html.php
index edc3466b0..8507477c2 100644
--- a/tests/Framework/Html.php
+++ b/tests/Framework/Html.php
@@ -117,6 +117,10 @@ class Framework_Html extends PHPUnit_Framework_TestCase
'expression="test == true ? \' test\' : \'\'" ',
array('expression' => 'test == true ? \' test\' : \'\''),
),
+ array(
+ 'href="http://domain.tld/страница"',
+ array('href' => 'http://domain.tld/страница'),
+ ),
);
}