make sure we are connected, as we need ADOdb object to convert charset to MySQL (eg. utf-8 --> utf8)

This commit is contained in:
Ralf Becker 2015-07-15 21:27:48 +00:00
parent e1ad625fca
commit 3943fca39d

View File

@ -1637,6 +1637,7 @@ class StreamWrapper implements Vfs\StreamWrapperIface
break;
}
// get host used be egw_db
$egw_db->connect();
$host = $egw_db->get_host();
$dsn = self::$pdo_type.':dbname='.$egw_db->Database.($host ? ';host='.$host.($egw_db->Port ? ';port='.$egw_db->Port : '') : '');