tt-rss: Fix syntax error in config.php DB_PASS field

Empty password case would write `define('DB_PASS', )` instead of `define('DB_PASS', '')`.
This commit is contained in:
Robert Irelan 2019-02-19 16:24:17 -08:00 committed by GitHub
parent 341f42b647
commit 7ae4b4897a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,7 +40,7 @@ let
else if (cfg.database.passwordFile != null) then
"file_get_contents('${cfg.database.passwordFile}')"
else
""
"''"
});
define('DB_PORT', '${toString dbPort}');