1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-11 03:04:09 +02:00

Merge pull request #6702 from marc1706/ticket/16777

[ticket/16777] Remove remainders of max image size
This commit is contained in:
Marc Alexander
2024-09-29 20:47:40 +02:00
committed by GitHub
10 changed files with 38 additions and 20 deletions

View File

@@ -18,14 +18,16 @@ class phpbb_functional_manifest_test extends phpbb_functional_test_case
{
public function test_manifest()
{
$url_path = preg_replace('#^(/.+)/$#', '$1', parse_url(self::$root_url, PHP_URL_PATH));
$expected = [
'name' => 'yourdomain.com',
'short_name' => 'yourdomain',
'display' => 'standalone',
'orientation' => 'portrait',
'dir' => 'ltr',
'start_url' => '/',
'scope' => '/',
'start_url' => $url_path,
'scope' => $url_path,
];
$this->login();