Disable the delete for now.

This commit is contained in:
FusionPBX 2020-07-10 12:36:11 -06:00 committed by GitHub
parent b4beae1e97
commit 7a720b84a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -863,7 +863,7 @@ include "root.php";
$sql = "delete from ".$table_prefix.$child_table." ";
$sql .= "where ".$relation['field']." = :".$relation['field'];
$parameters[$relation['field']] = $row[$relation['field']];
$this->execute($sql, $parameters);
//$this->execute($sql, $parameters);
unset($parameters);
}
}