mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 14:23:17 -04:00
default table prefix to oc_ if not set
This commit is contained in:
parent
5817bd10ba
commit
fd4b63810d
1 changed files with 1 additions and 1 deletions
|
|
@ -84,7 +84,7 @@ class OC_Setup {
|
|||
$dbpass = $options['dbpass'];
|
||||
$dbname = $options['dbname'];
|
||||
$dbhost = $options['dbhost'];
|
||||
$dbtableprefix = $options['dbtableprefix'];
|
||||
$dbtableprefix = isset($options['dbtableprefix']) ? $options['dbtableprefix'] : 'oc_';
|
||||
OC_Config::setValue('dbname', $dbname);
|
||||
OC_Config::setValue('dbhost', $dbhost);
|
||||
OC_Config::setValue('dbtableprefix', $dbtableprefix);
|
||||
|
|
|
|||
Loading…
Reference in a new issue