diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-04-11 00:08:53 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-06-29 21:15:06 +0200 |
commit | e93ce26f27fa8c2c364696a7a7ce5122eb4a91e2 (patch) | |
tree | a09e0a8214097db7924708be5e26605a88293db2 /lib/setup/abstractdatabase.php | |
parent | 42c44d516568b6a2bea33bcd59dd81cb0654569b (diff) | |
download | nextcloud-server-e93ce26f27fa8c2c364696a7a7ce5122eb4a91e2.tar.gz nextcloud-server-e93ce26f27fa8c2c364696a7a7ce5122eb4a91e2.zip |
Fix found errors
Diffstat (limited to 'lib/setup/abstractdatabase.php')
-rw-r--r-- | lib/setup/abstractdatabase.php | 2 |
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; } } |