Remove the redirector setting

Fixes 
This commit is contained in:
ArthurHoaro 2019-02-09 13:52:12 +01:00
parent 905f8675a7
commit 520d29578c
12 changed files with 50 additions and 168 deletions

View file

@ -107,7 +107,7 @@ class PluginMarkdownTest extends \PHPUnit\Framework\TestCase
public function testReverseText2clickable()
{
$text = 'stuff http://hello.there/is=someone#here otherstuff';
$clickableText = text2clickable($text, '');
$clickableText = text2clickable($text);
$reversedText = reverse_text2clickable($clickableText);
$this->assertEquals($text, $reversedText);
}