mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
FIX add warning in the changelog
This commit is contained in:
parent
19e2f0c75c
commit
9eb4c93c1c
|
|
@ -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 *****
|
||||
|
|
|
|||
|
|
@ -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++;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user