[Qual] Mysqli: OOP style

This commit is contained in:
Raphaël Doursenaud 2015-12-17 21:19:05 +01:00
parent daa3ce3591
commit 87762f14b5

View File

@ -200,7 +200,7 @@ class DoliDBMysqli extends DoliDB
*/
function getVersion()
{
return $this->db->get_server_info();
return $this->db->server_info;
}
/**
@ -210,7 +210,7 @@ class DoliDBMysqli extends DoliDB
*/
function getDriverInfo()
{
return $this->db->get_client_info();
return $this->db->client_info;
}