Changeset 3246 in subversion
- Timestamp:
- Feb 3, 2010 6:16:18 AM (3 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 3 edited
-
CHANGELOG (modified) (1 diff)
-
program/include/main.inc (modified) (1 diff)
-
program/include/rcube_mdb2.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/CHANGELOG
r3241 r3246 2 2 =========================== 3 3 4 - Fix inconsistency when not using default table names (#1486467) 4 5 - Fix folder rename/delete buttons do not appear on creation of first folder (#1486468) 5 6 - Fix character set conversion fails on systems where iconv doesn't accept //IGNORE (#1486375) -
trunk/roundcubemail/program/include/main.inc
r3240 r3246 70 70 function get_sequence_name($sequence) 71 71 { 72 // return table name if configured72 // return sequence name if configured 73 73 $config_key = 'db_sequence_'.$sequence; 74 74 $opt = rcmail::get_instance()->config->get($config_key); -
trunk/roundcubemail/program/include/rcube_mdb2.php
r3231 r3246 332 332 return FALSE; 333 333 334 // find sequence name 335 if ($table && $this->db_provider == 'pgsql') 336 $table = get_sequence_name($table); 337 334 if ($table) { 335 if ($this->db_provider == 'pgsql') 336 // find sequence name 337 $table = get_sequence_name($table); 338 else 339 // resolve table name 340 $table = get_table_name($table); 341 } 342 338 343 $id = $this->db_handle->lastInsertID($table); 339 344
Note: See TracChangeset
for help on using the changeset viewer.
