refactor: set mysqli as the default + cleanup (#4430)

* refactor: set mysqli as the default
dbFacile.mysqli cleanup
Init $db_stats array
number_format() returns string
remove unreachable statement, commented code, and unused global

* Fix style issues
This commit is contained in:
Tony Murray
2016-09-14 03:05:32 -05:00
committed by Neil Lathwood
parent e8b5c7fe66
commit ce95ceaa2b
2 changed files with 46 additions and 52 deletions

View File

@@ -43,7 +43,7 @@ $config['temp_dir'] = '/tmp';
$config['log_dir'] = $config['install_dir'].'/logs';
// MySQL extension to use
$config['db']['extension'] = 'mysql';//mysql and mysqli available
$config['db']['extension'] = 'mysqli';//mysql and mysqli available
// What is my own hostname (used to identify this host in its own database)
$config['own_hostname'] = 'localhost';