mirror of
https://github.com/BlueMap-Minecraft/BlueMap.git
synced 2025-02-16 20:41:57 +01:00
Fix index.php meta-resolving not working with query-parameters
This commit is contained in:
parent
493f0c9bec
commit
47117c2742
@ -109,7 +109,7 @@ if (startsWith($path, "/maps/")) {
|
||||
// determine map-path
|
||||
$pathParts = explode("/", substr($path, strlen("/maps/")), 2);
|
||||
$mapId = $pathParts[0];
|
||||
$mapPath = $pathParts[1];
|
||||
$mapPath = explode("?", $pathParts[1], 2)[0];
|
||||
|
||||
// get sql-connection
|
||||
$sql = new mysqli($hostname, $username, $password, $database, $port);
|
||||
|
Loading…
Reference in New Issue
Block a user