From 67cb033d1cd620da38c137b93de9df6c81f8b1c2 Mon Sep 17 00:00:00 2001 From: "Lukas Rieger (Blue)" Date: Thu, 22 Dec 2022 22:34:28 +0100 Subject: [PATCH] Use single-quotes in php to avoid accidental variable substitution --- BlueMapCommon/webapp/public/_index.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/BlueMapCommon/webapp/public/_index.php b/BlueMapCommon/webapp/public/_index.php index 0f05f3b7..2fbb42e7 100644 --- a/BlueMapCommon/webapp/public/_index.php +++ b/BlueMapCommon/webapp/public/_index.php @@ -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 !!!