Improve comparison in App->loadDatabase()

This commit is contained in:
Hypolite Petovan 2018-07-06 21:24:40 -04:00
parent 32418e8660
commit e98216b5bb
1 changed files with 1 additions and 1 deletions

View File

@ -505,7 +505,7 @@ class App
// Use environment variables for mysql if they are set beforehand // Use environment variables for mysql if they are set beforehand
if (!empty(getenv('MYSQL_HOST')) if (!empty(getenv('MYSQL_HOST'))
&& (!empty(getenv('MYSQL_USERNAME')) || !empty(getenv('MYSQL_USER'))) && (!empty(getenv('MYSQL_USERNAME')) || !empty(getenv('MYSQL_USER')))
&& !getenv('MYSQL_PASSWORD') === false && getenv('MYSQL_PASSWORD') !== false
&& !empty(getenv('MYSQL_DATABASE'))) && !empty(getenv('MYSQL_DATABASE')))
{ {
$db_host = getenv('MYSQL_HOST'); $db_host = getenv('MYSQL_HOST');