FIX add warning in the changelog

This commit is contained in:
Regis Houssin 2023-09-27 09:44:58 +02:00
parent 19e2f0c75c
commit 9eb4c93c1c
2 changed files with 3 additions and 2 deletions

View File

@ -512,6 +512,8 @@ Following changes may create regressions for some external modules, but were nec
* v14 seems to work correctly on PHP v8 but it generates a lot of verbose warnings. Currently, v14 i snot yet officialy supported with PHP 8.
* To execute shell or command line command, your code must never use method like exec, shell_exec, popen, .. but must use the built-in
method executeCLI() available into core/class/utils.class.php
* the trigger "*_DELETE_CONTACT" inside "delete_contact()" function from commonobject.class.php is call before delete the object element
and a $object->context['contact_id'] is now available for this trigger
***** ChangeLog for 13.0.5 compared to 13.0.4 *****

View File

@ -1172,12 +1172,11 @@ abstract class CommonObject
$error = 0;
$this->context['contact_id'] = ((int) $rowid);
$this->db->begin();
if (!$error && empty($notrigger)) {
// Call trigger
$this->context['contact_id'] = ((int) $rowid);
$result = $this->call_trigger(strtoupper($this->element).'_DELETE_CONTACT', $user);
if ($result < 0) {
$error++;