Fix typo in getting var from config

This commit is contained in:
Brice Maron 2011-10-16 21:08:07 +02:00
parent c105268a1d
commit 90c54ade67
1 changed files with 1 additions and 1 deletions

View File

@ -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);