1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/11568] Trim the output to allow Tabs before INCLUDE overall_header

PHPBB3-11568
This commit is contained in:
Joas Schilling
2013-05-28 14:10:27 +02:00
parent 9be57ec076
commit 3d6620f0db

View File

@@ -468,6 +468,6 @@ class phpbb_functional_test_case extends phpbb_test_case
$content = self::$client->getResponse()->getContent();
// Any output before the doc type means there was an error
self::assertStringStartsWith('<!DOCTYPE', $content, 'Output found before DOCTYPE specification.');
self::assertStringStartsWith('<!DOCTYPE', trim($content), 'Output found before DOCTYPE specification.');
}
}