2
0
forked from Wavyzz/dolibarr

Fix escaping

This commit is contained in:
Laurent Destailleur
2020-09-20 02:30:53 +02:00
parent fa86b62198
commit f57b4fd2fd
19 changed files with 74 additions and 72 deletions

View File

@@ -46,7 +46,7 @@ class TraceableDB extends DoliDB
public function __construct($db)
{
$this->db = $db;
$this->type = $db->type;
$this->type = $this->db->type;
$this->queries = array();
}