summaryrefslogtreecommitdiff
path: root/program/lib/Roundcube/rcube_user.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-09-15 11:37:42 +0200
committerAleksander Machniak <alec@alec.pl>2014-09-15 11:37:42 +0200
commit83a64265a7d8865f0381e53a0cc47d6ef53217b6 (patch)
tree804c38eb1eaf4e40dc48395b9597edc4b8df4f96 /program/lib/Roundcube/rcube_user.php
parentb84a04336b4fd614b08b769ffbad4c5fd2d69254 (diff)
Fixes for Oracle
Diffstat (limited to 'program/lib/Roundcube/rcube_user.php')
-rw-r--r--program/lib/Roundcube/rcube_user.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_user.php b/program/lib/Roundcube/rcube_user.php
index b63cabece..b2110df8b 100644
--- a/program/lib/Roundcube/rcube_user.php
+++ b/program/lib/Roundcube/rcube_user.php
@@ -341,7 +341,7 @@ class rcube_user
$insert_cols[] = $this->db->quote_identifier($col);
$insert_values[] = $value;
}
- $insert_cols[] = 'user_id';
+ $insert_cols[] = $this->db->quote_identifier('user_id');
$insert_values[] = $this->ID;
$sql = "INSERT INTO ".$this->db->table_name('identities', true).