From 005c98e46c92b6c02a19abe6f9c26c939475faf2 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Wed, 27 Nov 2013 00:08:07 +0100 Subject: Correct property name. It's just 'tableprefix', without the 'db' prefix. --- lib/private/setup/oci.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/setup/oci.php b/lib/private/setup/oci.php index 326d7a00531..f53d986d7db 100644 --- a/lib/private/setup/oci.php +++ b/lib/private/setup/oci.php @@ -115,7 +115,7 @@ class OCI extends AbstractDatabase { } $query = "SELECT count(*) FROM user_tables WHERE table_name = :un"; $stmt = oci_parse($connection, $query); - $un = $this->dbtableprefix.'users'; + $un = $this->tableprefix.'users'; oci_bind_by_name($stmt, ':un', $un); if (!$stmt) { $entry = $this->trans->t('DB Error: "%s"', array(oci_error($connection))) . '
'; -- cgit v1.2.3