Skip to content

Commit 904ba51

Browse files
authored
Merge pull request #830 from jamieburchell/patch-1
Fix incorrectly decoding plus symbol to space in paths
2 parents 21fb0a3 + e2f48b0 commit 904ba51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ function valet_default_site_path($config)
6363
/**
6464
* Parse the URI and site / host for the incoming request.
6565
*/
66-
$uri = urldecode(
66+
$uri = rawurldecode(
6767
explode("?", $_SERVER['REQUEST_URI'])[0]
6868
);
6969

0 commit comments

Comments
 (0)