From cbc025725e20e7a56ee3ac85dd35ce7c843a6d3c Mon Sep 17 00:00:00 2001 From: Kalle Sommer Nielsen Date: Wed, 27 May 2009 01:37:51 +0000 Subject: [PATCH] Silent dl() if it fails --- win32/build/registersyslog.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32/build/registersyslog.php b/win32/build/registersyslog.php index e5aa1d92c0..ce28cbf420 100755 --- a/win32/build/registersyslog.php +++ b/win32/build/registersyslog.php @@ -3,7 +3,7 @@ /* This script sets up an event source for use by the php syslog() function. */ if (!extension_loaded("win32std")) { - dl("php_win32std.dll"); + @dl("php_win32std.dll"); } $PATH = "SYSTEM\\CurrentControlSet\\Services\\Eventlog\\Application\\PHP-" . phpversion(); -- 2.50.1