summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2010-07-06 10:37:11 +0200
committerRobin Appelman <icewind1991@gmail.com>2010-07-06 10:37:11 +0200
commit761b54fc17aeedc77e07a5ec5ff8f412ea46e798 (patch)
tree8061c755e63dff3bcc94d606d2871bd4b8860099
parent1bdfe395cd5beabc4ec9e3bd55d944d933d7b053 (diff)
downloadnextcloud-server-761b54fc17aeedc77e07a5ec5ff8f412ea46e798.tar.gz
nextcloud-server-761b54fc17aeedc77e07a5ec5ff8f412ea46e798.zip
fix table prefix not being set correctly to an empty string on first run when using sqlite
-rwxr-xr-xinc/lib_config.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/inc/lib_config.php b/inc/lib_config.php
index 77fd68a189e..cbf86b17aa1 100755
--- a/inc/lib_config.php
+++ b/inc/lib_config.php
@@ -193,6 +193,7 @@ class OC_CONFIG{
$CONFIG_DBPASSWORD=$_POST['dbpassword'];
}else{
$_POST['dbtableprefix']='';
+ $CONFIG_DBTABLEPREFIX='';
}
try{
if(isset($_POST['createdatabase']) and $CONFIG_DBTYPE!='sqlite'){