Änderungen https Andy Müller rückgängig gemacht

This commit is contained in:
schwaral
2023-04-26 13:53:28 +02:00
parent aa11420ec4
commit e4b5f82858
508 changed files with 2763 additions and 2763 deletions

View File

@ -12,8 +12,8 @@ class HTMLPurifier_Injector_DisplayLinkURITest extends HTMLPurifier_InjectorHarn
public function testBasicLink()
{
$this->assertResult(
'<a href="https://malware.example.com">Don\'t go here!</a>',
'<a>Don\'t go here!</a> (https://malware.example.com)'
'<a href="http://malware.example.com">Don\'t go here!</a>',
'<a>Don\'t go here!</a> (http://malware.example.com)'
);
}
@ -27,8 +27,8 @@ class HTMLPurifier_Injector_DisplayLinkURITest extends HTMLPurifier_InjectorHarn
public function testEmptyText()
{
$this->assertResult(
'<a href="https://malware.example.com"></a>',
'<a></a> (https://malware.example.com)'
'<a href="http://malware.example.com"></a>',
'<a></a> (http://malware.example.com)'
);
}