Skip to content

Commit

Permalink
Remove incorrect memory address pointer
Browse files Browse the repository at this point in the history
Would point to the wrong address and pull the wrong static directory
  • Loading branch information
nox7 committed Apr 21, 2022
1 parent d4b7305 commit f747894
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Router/StaticFileHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function getFullStaticFilePath(string $filePath): null | string{
}else{
// This is a setting that serves from root URIs (/). It must be processed last so that
// other static directories can have a chance to be served
$rootStaticServingSetting = &$staticDirectorySetting;
$rootStaticServingSetting = $staticDirectorySetting;
}
}

Expand Down

0 comments on commit f747894

Please sign in to comment.