Server geändert

This commit is contained in:
aschwarz
2023-04-25 13:12:50 +02:00
parent 5e9c9cf19d
commit 57b74ca3a5
647 changed files with 3051 additions and 3051 deletions

View File

@ -31,11 +31,11 @@ class HTMLPurifierTest extends HTMLPurifier_Harness
public function testMakeAbsolute()
{
$this->config->set('URI.Base', 'http://example.com/bar/baz.php');
$this->config->set('URI.Base', 'https://example.com/bar/baz.php');
$this->config->set('URI.MakeAbsolute', true);
$this->assertPurification(
'<a href="foo.txt">Foobar</a>',
'<a href="http://example.com/bar/foo.txt">Foobar</a>'
'<a href="https://example.com/bar/foo.txt">Foobar</a>'
);
}