Skip to content
Snippets Groups Projects
Commit d06854cb authored by Nicolas Grekas's avatar Nicolas Grekas
Browse files

Merge branch '5.4' into 6.4

* 5.4:
  Work around parse_url() bug (bis)
  fix PHP 7.2 compatibility
  silence PHP warnings issued by Redis::connect()
  Bump Symfony version to 5.4.48
  Update VERSION for 5.4.47
  Update CHANGELOG for 5.4.47
  [Routing] Fix: lost priority when defining hosts in configuration
  fix dumping tests to skip with data providers
parents 79f02097 67b394d5
No related branches found
No related tags found
No related merge requests found
......@@ -98,6 +98,12 @@ switch ($vars['REQUEST_URI']) {
}
break;
case '/302-no-scheme':
if (!isset($vars['HTTP_AUTHORIZATION'])) {
header('Location: localhost:8067', true, 302);
}
break;
case '/302/relative':
header('Location: ..', true, 302);
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment