Merge pull request from ArthurHoaro/hotfix/url-parentheses

Fix parsing for description links with parentheses
This commit is contained in:
ArthurHoaro 2017-09-30 14:25:53 +02:00 committed by GitHub
commit 3512f44617
2 changed files with 11 additions and 1 deletions

View file

@ -103,6 +103,16 @@ class LinkUtilsTest extends PHPUnit_Framework_TestCase
$expectedText = 'stuff <a href="http://hello.there/is=someone#here">http://hello.there/is=someone#here</a> otherstuff';
$processedText = text2clickable($text, '');
$this->assertEquals($expectedText, $processedText);
$text = 'stuff http://hello.there/is=someone#here(please) otherstuff';
$expectedText = 'stuff <a href="http://hello.there/is=someone#here(please)">http://hello.there/is=someone#here(please)</a> otherstuff';
$processedText = text2clickable($text, '');
$this->assertEquals($expectedText, $processedText);
$text = 'stuff http://hello.there/is=someone#here(please)&no otherstuff';
$expectedText = 'stuff <a href="http://hello.there/is=someone#here(please)&no">http://hello.there/is=someone#here(please)&no</a> otherstuff';
$processedText = text2clickable($text, '');
$this->assertEquals($expectedText, $processedText);
}
/**