diff options
author | Robin Appelman <icewind1991@gmail.com> | 2010-07-06 10:37:11 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2010-07-06 10:37:11 +0200 |
commit | 761b54fc17aeedc77e07a5ec5ff8f412ea46e798 (patch) | |
tree | 8061c755e63dff3bcc94d606d2871bd4b8860099 | |
parent | 1bdfe395cd5beabc4ec9e3bd55d944d933d7b053 (diff) | |
download | nextcloud-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-x | inc/lib_config.php | 1 |
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'){ |