Skip to content
Snippets Groups Projects
Commit 005c98e4 authored by Andreas Fischer's avatar Andreas Fischer
Browse files

Correct property name. It's just 'tableprefix', without the 'db' prefix.

parent 6c16d45d
Branches
No related tags found
No related merge requests found
......@@ -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 />';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment