Fix removed a debug die

This commit is contained in:
Laurent Destailleur 2019-11-05 15:57:22 +01:00
parent 71a83b4d7e
commit 4c01f33228

View File

@ -8035,7 +8035,8 @@ abstract class CommonObject
if (! $this->db->query($sql))
{
$this->db->rollback();die($sql);
$this->error = $this->db->lasterror();
$this->db->rollback();
return -1;
}