summaryrefslogtreecommitdiffstats
path: root/lib/setup/abstractdatabase.php
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2013-04-11 00:08:53 +0200
committerBart Visscher <bartv@thisnet.nl>2013-06-29 21:15:06 +0200
commite93ce26f27fa8c2c364696a7a7ce5122eb4a91e2 (patch)
treea09e0a8214097db7924708be5e26605a88293db2 /lib/setup/abstractdatabase.php
parent42c44d516568b6a2bea33bcd59dd81cb0654569b (diff)
downloadnextcloud-server-e93ce26f27fa8c2c364696a7a7ce5122eb4a91e2.tar.gz
nextcloud-server-e93ce26f27fa8c2c364696a7a7ce5122eb4a91e2.zip
Fix found errors
Diffstat (limited to 'lib/setup/abstractdatabase.php')
-rw-r--r--lib/setup/abstractdatabase.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/setup/abstractdatabase.php b/lib/setup/abstractdatabase.php
index c1b611e6554..66202251e97 100644
--- a/lib/setup/abstractdatabase.php
+++ b/lib/setup/abstractdatabase.php
@@ -43,6 +43,6 @@ abstract class AbstractDatabase {
$this->dbpassword = $dbpass;
$this->dbname = $dbname;
$this->dbhost = $dbhost;
- $this->tableprefix = $tableprefix;
+ $this->tableprefix = $dbtableprefix;
}
}