mirror of
https://github.com/BlueMap-Minecraft/BlueMap.git
synced 2025-01-08 09:17:43 +01:00
Use single-quotes in php to avoid accidental variable substitution
This commit is contained in:
parent
5124e613c2
commit
67cb033d1c
@ -2,14 +2,14 @@
|
||||
|
||||
// !!! SET YOUR SQL-CONNECTION SETTINGS HERE: !!!
|
||||
|
||||
$hostname = "127.0.0.1";
|
||||
$hostname = '127.0.0.1';
|
||||
$port = 3306;
|
||||
$username = "root";
|
||||
$password = "";
|
||||
$database = "bluemap";
|
||||
$username = 'root';
|
||||
$password = '';
|
||||
$database = 'bluemap';
|
||||
|
||||
// set this to "none" if you disabled compression on your maps
|
||||
$hiresCompression = "gzip";
|
||||
$hiresCompression = 'gzip';
|
||||
|
||||
// !!! END - DONT CHANGE ANYTHING AFTER THIS LINE !!!
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user