From aeebcefb2512f0f5392e5b57dc83aa5480f6cdbc Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sat, 21 Feb 2004 00:56:32 +0000 Subject: [PATCH] =?UTF-8?q?Remplacement=20de=20LOG=5FLOCAL0=20par=20LOG=5F?= =?UTF-8?q?USER=20dans=20la=20fonction=20openlog=20car=20LOG=5FLOCAL0=20g?= =?UTF-8?q?=E9n=E8re=20des=20erreurs=20sur=20certains=20PHP=20(r=E9serv=E9?= =?UTF-8?q?).?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/install/inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/install/inc.php b/htdocs/install/inc.php index e74f6e700c3..f57324385cd 100644 --- a/htdocs/install/inc.php +++ b/htdocs/install/inc.php @@ -64,7 +64,7 @@ Function dolibarr_syslog($message) { define_syslog_variables(); - openlog("dolibarr", LOG_PID | LOG_PERROR, LOG_LOCAL0); + openlog("dolibarr", LOG_PID | LOG_PERROR, LOG_USER); # LOG_USER au lieu de LOG_LOCAL0 car non accepté par tous les PHP syslog(LOG_WARNING, $message);