- Fix rcube_mdb2.php: call to setCharset not implemented in mssql driver (#1486019)

release-0.6
alecpl 15 years ago
parent cb1d1cb3c8
commit dec9e85eae

@ -1,6 +1,7 @@
CHANGELOG RoundCube Webmail
===========================
- Fix rcube_mdb2.php: call to setCharset not implemented in mssql driver (#1486019)
- Added 'display_next' option
- Fix rcube_mdb2::unixtimestamp for MS SQL (#1486015)
- Fix HTML washing to respect character encoding

@ -106,7 +106,7 @@ class rcube_mdb2
if (!filesize($dsn_array['database']) && !empty($this->sqlite_initials))
$this->_sqlite_create_database($dbh, $this->sqlite_initials);
}
else
else if ($this->db_provider!='mssql')
$dbh->setCharset('utf8');
return $dbh;

Loading…
Cancel
Save