diff options
author | Andreas Fischer <bantu@owncloud.com> | 2013-11-27 00:08:07 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@owncloud.com> | 2013-11-28 11:23:45 +0100 |
commit | 005c98e46c92b6c02a19abe6f9c26c939475faf2 (patch) | |
tree | 51abedfd1b9f82df7649a3ebaee107e01d1219cb /lib/private/setup | |
parent | 6c16d45dc75317f6714afe48de8c56c70b8d2665 (diff) | |
download | nextcloud-server-005c98e46c92b6c02a19abe6f9c26c939475faf2.tar.gz nextcloud-server-005c98e46c92b6c02a19abe6f9c26c939475faf2.zip |
Correct property name. It's just 'tableprefix', without the 'db' prefix.
Diffstat (limited to 'lib/private/setup')
-rw-r--r-- | lib/private/setup/oci.php | 2 |
1 files changed, 1 insertions, 1 deletions
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))) . '<br />'; |