mirror of
https://github.com/nextcloud/server.git
synced 2026-04-22 14:50:17 -04:00
Fix typo in getting var from config
This commit is contained in:
parent
c105268a1d
commit
90c54ade67
1 changed files with 1 additions and 1 deletions
|
|
@ -82,7 +82,7 @@ class OC_Setup {
|
|||
$dbpass = $options['dbpass'];
|
||||
$dbname = $options['dbname'];
|
||||
$dbhost = $options['dbhost'];
|
||||
$dbtableprefix = OC_Config::gsetValue('dbtableprefix','oc_');
|
||||
$dbtableprefix = OC_Config::getValue('dbtableprefix','oc_');
|
||||
OC_Config::setValue('dbname', $dbname);
|
||||
OC_Config::setValue('dbhost', $dbhost);
|
||||
OC_Config::setValue('dbtableprefix', $dbtableprefix);
|
||||
|
|
|
|||
Loading…
Reference in a new issue