From: Kalle Sommer Nielsen Date: Wed, 27 May 2009 01:38:13 +0000 (+0000) Subject: MFH: Silent dl() if it fails X-Git-Tag: php-5.3.0RC3~132 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4ab4b6817d90b6f3ca3f09ae568b51d7c9e53b54;p=php MFH: Silent dl() if it fails --- 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();