summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2020-04-23 15:56:31 +0300
committerAndrew Dolgov <[email protected]>2020-04-23 15:56:31 +0300
commit01248f09bc5aaac87ab4fbe6608ecbd687f886db (patch)
tree305eb1cd34935300ff6dded8f3a046b47dbe0d15
parent11a9d3bd9be1dcbf5177baa9846770012da3ce8b (diff)
change double quotes to single quotes in config.php-dist because double quotes break docker initialization
-rwxr-xr-xconfig.php-dist10
1 files changed, 5 insertions, 5 deletions
diff --git a/config.php-dist b/config.php-dist
index e83fdcfdc..824c378a7 100755
--- a/config.php-dist
+++ b/config.php-dist
@@ -3,11 +3,11 @@
// *** Database configuration (important!) ***
// *******************************************
- define('DB_TYPE', "%DB_TYPE"); // pgsql or mysql
- define('DB_HOST', "%DB_HOST");
- define('DB_USER', "%DB_USER");
- define('DB_NAME', "%DB_NAME");
- define('DB_PASS', "%DB_PASS");
+ define('DB_TYPE', '%DB_TYPE'); // pgsql or mysql
+ define('DB_HOST', '%DB_HOST');
+ define('DB_USER', '%DB_USER');
+ define('DB_NAME', '%DB_NAME');
+ define('DB_PASS', '%DB_PASS');
define('DB_PORT', '%DB_PORT'); // usually 5432 for PostgreSQL, 3306 for MySQL
define('MYSQL_CHARSET', 'UTF8');