mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-25 11:28:55 +00:00
[ticket/11568] Trim the output to allow Tabs before INCLUDE overall_header
PHPBB3-11568
This commit is contained in:
parent
9be57ec076
commit
3d6620f0db
1 changed files with 1 additions and 1 deletions
|
@ -468,6 +468,6 @@ class phpbb_functional_test_case extends phpbb_test_case
|
||||||
$content = self::$client->getResponse()->getContent();
|
$content = self::$client->getResponse()->getContent();
|
||||||
|
|
||||||
// Any output before the doc type means there was an error
|
// 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.');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue