Changeset 2351 in subversion
- Timestamp:
- Mar 11, 2009 8:44:33 AM (4 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/lib/MDB2.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/CHANGELOG
r2334 r2351 2 2 =========================== 3 3 4 - Fix 'mode' parameter in sqlite DSN (#1485772) 5 6 RELEASE 0.2.1 7 ------------------ 4 8 - Use US-ASCII as failover when Unicode searching fails (#1485762) 5 9 - Fix errors handling in IMAP command continuations (#1485762) -
trunk/roundcubemail/program/lib/MDB2.php
r2001 r2351 825 825 function parseDSN($dsn) 826 826 { 827 $parsed = $GLOBALS['_MDB2_dsninfo_default'];827 $parsed = array(); 828 828 829 829 if (is_array($dsn)) { … … 844 844 } 845 845 846 846 847 // Get phptype and dbsyntax 847 848 // $str => phptype(dbsyntax) … … 855 856 856 857 if (!count($dsn)) { 857 return $parsed;858 return array_merge($GLOBALS['_MDB2_dsninfo_default'], $parsed); 858 859 } 859 860 … … 938 939 } 939 940 940 return $parsed;941 return array_merge($GLOBALS['_MDB2_dsninfo_default'], $parsed); 941 942 } 942 943
Note: See TracChangeset
for help on using the changeset viewer.
