From 2da37fffc4b8e048a679c7ad517d4f326a262fcb Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Thu, 23 Jan 2025 02:45:01 +0100 Subject: [PATCH] Fix quotes --- htdocs/core/class/conf.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/class/conf.class.php b/htdocs/core/class/conf.class.php index daa3e0c6cc7..f6f452062c1 100644 --- a/htdocs/core/class/conf.class.php +++ b/htdocs/core/class/conf.class.php @@ -1168,7 +1168,7 @@ class Conf extends stdClass $this->contrat->services->inactifs = new stdClass(); $this->contrat->services->expires = new stdClass(); $this->contrat->services->inactifs->warning_delay = getDolGlobalInt('MAIN_DELAY_NOT_ACTIVATED_SERVICES') * 86400; - $this->contrat->services->expires->warning_delay = getDolGlobalInt(MAIN_DELAY_RUNNING_SERVICES) * 86400; + $this->contrat->services->expires->warning_delay = getDolGlobalInt('MAIN_DELAY_RUNNING_SERVICES') * 86400; } if (isset($this->commande)) { $this->bank->rappro = new stdClass();