File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,9 @@ public function handleRequest(Request $request): Response
74
74
}
75
75
76
76
$ method = $ request ->getMethod ();
77
- $ path = \rawurldecode ($ request ->getUri ()->getPath ());
77
+
78
+ $ path = \str_ireplace ('%2F ' , '%252F ' , $ request ->getUri ()->getPath ());
79
+ $ path = \rawurldecode ($ path );
78
80
79
81
$ toMatch = "{$ method }\0{$ path }" ;
80
82
Original file line number Diff line number Diff line change @@ -214,11 +214,11 @@ public function testPathIsMatchedDecoded(): void
214
214
});
215
215
216
216
$ router = new Router ($ this ->server , $ this ->testLogger , $ this ->errorHandler );
217
- $ router ->addRoute ("GET " , "/fo+ö " , $ requestHandler );
217
+ $ router ->addRoute ("GET " , "/fo+%2Fö bar " , $ requestHandler );
218
218
219
219
$ this ->server ->start ($ router , $ this ->errorHandler );
220
220
221
- $ uri = "/fo+ " . \rawurlencode ("ö " ) ;
221
+ $ uri = "/fo+%2F " . \rawurlencode ("ö " ) . ' bar ' ;
222
222
223
223
$ request = new Request ($ this ->createMock (Client::class), "GET " , Uri \Http::createFromString ($ uri ));
224
224
$ response = $ router ->handleRequest ($ request );
You can’t perform that action at this time.
0 commit comments