From 2f8412defc6e6adb3dee4ea81f450176a36527b2 Mon Sep 17 00:00:00 2001 From: Brice Maron Date: Mon, 28 May 2012 20:56:21 +0000 Subject: [PATCH] Set table prefix if not set in postgresql install --- lib/setup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/setup.php b/lib/setup.php index 8c2d523121..8137eb720e 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -145,7 +145,7 @@ class OC_Setup { $dbpass = $options['dbpass']; $dbname = $options['dbname']; $dbhost = $options['dbhost']; - $dbtableprefix = $options['dbtableprefix']; + $dbtableprefix = isset($options['dbtableprefix']) ? $options['dbtableprefix'] : 'oc_'; OC_CONFIG::setValue('dbname', $dbname); OC_CONFIG::setValue('dbhost', $dbhost); OC_CONFIG::setValue('dbtableprefix', $dbtableprefix);