mirror of
https://github.com/YunoHost-Apps/joomla_ynh.git
synced 2024-09-03 19:26:34 +02:00
database prefix must not be empty
dbprefix = ''; // Any random string ending with _
This commit is contained in:
parent
1209b399db
commit
675c28ee10
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ class JConfig
|
|||
public $user = '__DB_USER__'; // Database username
|
||||
public $password = '__DB_PWD__'; // Database password
|
||||
public $db = '__DB_NAME__'; // Database name
|
||||
public $dbprefix = 'ynh_'; // Any random string ending with _
|
||||
public $dbprefix = ''; // Any random string ending with _
|
||||
public $dbencryption = 0;
|
||||
public $dbsslverifyservercert = false;
|
||||
public $dbsslkey = '';
|
||||
|
|
Loading…
Reference in a new issue