Use single-quotes in php to avoid accidental variable substitution

This commit is contained in:
Lukas Rieger (Blue) 2022-12-22 22:34:28 +01:00
parent 5124e613c2
commit 67cb033d1c
No known key found for this signature in database
GPG Key ID: 2D09EC5ED2687FF2
1 changed files with 5 additions and 5 deletions

View File

@ -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 !!!