This commit is contained in:
xdrm-brackets 2017-05-12 22:41:57 +02:00
parent 23d26e9cd9
commit 17b0cd864c
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@
try{
/* (1) If local -> instanciates with local configuration */
if( !checkdnsrr($_SERVER['SERVER_NAME'], 'NS') )
if( $_SERVER['SERVER_NAME'] == 'localhost' || !checkdnsrr($_SERVER['SERVER_NAME'], 'NS') )
self::$instance[$label] = new DatabaseDriver($conf[$label]['local']['host'], $conf[$label]['local']['dbname'], $conf[$label]['local']['user'], $conf[$label]['local']['password']);
/* (2) If Remote -> instanciates with Remote configuration */
else