diff options
author | Brice Maron <brice@bmaron.net> | 2011-10-16 21:08:07 +0200 |
---|---|---|
committer | Brice Maron <brice@bmaron.net> | 2011-10-16 21:08:07 +0200 |
commit | 90c54ade673983d28d1eab810705fb6185632d2e (patch) | |
tree | 59c6313c4d5b2827073e505e4b7b71f004e66d1b /lib/setup.php | |
parent | c105268a1dc7e68bd9dc3ff3ebe65cffcce33568 (diff) | |
download | nextcloud-server-90c54ade673983d28d1eab810705fb6185632d2e.tar.gz nextcloud-server-90c54ade673983d28d1eab810705fb6185632d2e.zip |
Fix typo in getting var from config
Diffstat (limited to 'lib/setup.php')
-rw-r--r-- | lib/setup.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/setup.php b/lib/setup.php index 92487c69162..2dcedb9b820 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -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); |