diff options
author | Steve Clay <steve@mrclay.org> | 2013-05-13 22:40:46 -0400 |
---|---|---|
committer | Steve Clay <steve@mrclay.org> | 2013-05-13 22:40:46 -0400 |
commit | 8a5d4dad56dab0467415c189e8632ef151b0bcc5 (patch) | |
tree | 2dd6aadc4cf2d67789a3b484950b4bfb0e91a778 /engine/tests/regression/trac_bugs.php | |
parent | d6166b326ea6f25c477e2f47e9e8aef6a2af2597 (diff) | |
parent | 6fed48c68bd866149427c63782d5ce4db6ba80c4 (diff) | |
download | elgg-8a5d4dad56dab0467415c189e8632ef151b0bcc5.tar.gz elgg-8a5d4dad56dab0467415c189e8632ef151b0bcc5.tar.bz2 |
Merge branch 'pr5416' into 1.8
Diffstat (limited to 'engine/tests/regression/trac_bugs.php')
-rw-r--r-- | engine/tests/regression/trac_bugs.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/engine/tests/regression/trac_bugs.php b/engine/tests/regression/trac_bugs.php index 4de9c306b..7fdd51c27 100644 --- a/engine/tests/regression/trac_bugs.php +++ b/engine/tests/regression/trac_bugs.php @@ -283,6 +283,14 @@ class ElggCoreRegressionBugsTest extends ElggCoreUnitTest { 'ftp ftp://example.org/ test' => 'ftp <a href="ftp://example.org/" rel="nofollow">ftp:/<wbr />/<wbr />example.org/<wbr /></a> test', + 'web archive anchor <a href="http://web.archive.org/web/20000229040250/http://www.google.com/">google</a>' => + 'web archive anchor <a href="http://web.archive.org/web/20000229040250/http://www.google.com/">google</a>', + + 'single quotes already anchor <a href=\'http://www.yahoo.com\'>yahoo</a>' => + 'single quotes already anchor <a href=\'http://www.yahoo.com\'>yahoo</a>', + + 'unquoted already anchor <a href=http://www.yahoo.com>yahoo</a>' => + 'unquoted already anchor <a href=http://www.yahoo.com>yahoo</a>', ); foreach ($cases as $input => $output) { $this->assertEqual($output, parse_urls($input)); |