Check if childtablesoncascade is not empty

This commit is contained in:
TuxGasy 2019-09-14 19:04:43 +02:00
parent f45abc1b2a
commit e0238705cc

View File

@ -7536,18 +7536,20 @@ abstract class CommonObject
} }
// Delete cascade first // Delete cascade first
foreach($this->childtablesoncascade as $table) if (! empty($this->childtablesoncascade)) {
{ foreach($this->childtablesoncascade as $table)
$sql = 'DELETE FROM '.MAIN_DB_PREFIX.$table.' WHERE '.$this->fk_element.' = '.$this->id; {
$resql = $this->db->query($sql); $sql = 'DELETE FROM '.MAIN_DB_PREFIX.$table.' WHERE '.$this->fk_element.' = '.$this->id;
if (! $resql) $resql = $this->db->query($sql);
{ if (! $resql)
$this->error=$this->db->lasterror(); {
$this->errors[]=$this->error; $this->error=$this->db->lasterror();
$this->db->rollback(); $this->errors[]=$this->error;
return -1; $this->db->rollback();
} return -1;
} }
}
}
if (! $error) { if (! $error) {
if (! $notrigger) { if (! $notrigger) {