From be509634a4f844913ed7c157ca4f1ec0df91c22f Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sat, 18 Nov 2023 02:13:49 +0100 Subject: [PATCH] Fix phpunit --- htdocs/core/class/commonobject.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/class/commonobject.class.php b/htdocs/core/class/commonobject.class.php index 8244cb4d609..c4d5eb38ce3 100644 --- a/htdocs/core/class/commonobject.class.php +++ b/htdocs/core/class/commonobject.class.php @@ -3476,7 +3476,7 @@ abstract class CommonObject $trigger_name = strtoupper($this->element) . '_MODIFY'; } $ret = $this->call_trigger($trigger_name, $user); - if($ret < 0 ) { + if ($ret < 0) { return -1; } }