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

This commit is contained in:
aschwarz
2023-04-26 13:57:51 +02:00
parent 76cac016ad
commit 7ee3f915de
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)'
);
}