mirror of
https://github.com/YunoHost-Apps/phpback_ynh.git
synced 2024-09-03 19:56:34 +02:00
Merge pull request #1 from Salamandar/patch-1
Fix database.php : use mysqli instead om mysql
This commit is contained in:
commit
a380722f4a
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ $db['default']['hostname'] = 'localhost';
|
|||
$db['default']['username'] = '__DB_USER__';
|
||||
$db['default']['password'] = '__DB_PWD__';
|
||||
$db['default']['database'] = '__DB_NAME__';
|
||||
$db['default']['dbdriver'] = 'mysql';
|
||||
$db['default']['dbdriver'] = 'mysqli';
|
||||
$db['default']['dbprefix'] = '';
|
||||
$db['default']['pconnect'] = TRUE;
|
||||
$db['default']['db_debug'] = TRUE;
|
||||
|
|
Loading…
Reference in a new issue