summaryrefslogtreecommitdiffstats
path: root/lib/private/db/mdb2schemawriter.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/db/mdb2schemawriter.php')
-rw-r--r--lib/private/db/mdb2schemawriter.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/db/mdb2schemawriter.php b/lib/private/db/mdb2schemawriter.php
index aa6d578e9b5..a42cd86ba54 100644
--- a/lib/private/db/mdb2schemawriter.php
+++ b/lib/private/db/mdb2schemawriter.php
@@ -23,7 +23,7 @@ class OC_DB_MDB2SchemaWriter {
$xml->addChild('charset', 'utf8');
$conn->getConfiguration()->
- setFilterSchemaAssetsExpression('/^' . $config->getSystemValue('dbtableprefix') . '/');
+ setFilterSchemaAssetsExpression('/^' . $config->getSystemValue('dbtableprefix', 'oc_') . '/');
foreach ($conn->getSchemaManager()->listTables() as $table) {
self::saveTable($table, $xml->addChild('table'));