summaryrefslogtreecommitdiffstats
path: root/lib/setup/mssql.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/setup/mssql.php')
-rw-r--r--lib/setup/mssql.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/setup/mssql.php b/lib/setup/mssql.php
index 74ac8f294a9..5ed0d030c7c 100644
--- a/lib/setup/mssql.php
+++ b/lib/setup/mssql.php
@@ -149,7 +149,7 @@ class MSSQL extends AbstractDatabase {
//fill the database if needed
$query = "SELECT * FROM INFORMATION_SCHEMA.TABLES"
." WHERE TABLE_SCHEMA = '".$this->dbname."'"
- ." AND TABLE_NAME = '".$this->dbtableprefix."users'";
+ ." AND TABLE_NAME = '".$this->tableprefix."users'";
$result = sqlsrv_query($connection, $query);
if ($result === false) {
if ( ($errors = sqlsrv_errors() ) != null) {