diff options
author | alecpl <alec@alec.pl> | 2009-08-04 08:22:41 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-08-04 08:22:41 +0000 |
commit | 6b7e8e705a32088a7cb7094eb3204714442cd4e6 (patch) | |
tree | 0554e286dfc5c3a895afbc91ac62583d78aaca9f /program/include/rcube_contacts.php | |
parent | dbfceb4b5c81d6627fe549ae4a0a8ee24ac52093 (diff) |
- Use sequence names only with PostgreSQL (#1486018)
Diffstat (limited to 'program/include/rcube_contacts.php')
-rw-r--r-- | program/include/rcube_contacts.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_contacts.php b/program/include/rcube_contacts.php index e85c865f2..a931845ae 100644 --- a/program/include/rcube_contacts.php +++ b/program/include/rcube_contacts.php @@ -271,7 +271,7 @@ class rcube_contacts extends rcube_addressbook VALUES (".intval($this->user_id).", ".$this->db->now().", 0, ".join(', ', $a_insert_values).")" ); - $insert_id = $this->db->insert_id(get_sequence_name('contacts')); + $insert_id = $this->db->insert_id('contacts'); } return $insert_id; |