diff options
author | Kalle Sommer Nielsen <kalle@php.net> | 2009-05-27 01:38:13 +0000 |
---|---|---|
committer | Kalle Sommer Nielsen <kalle@php.net> | 2009-05-27 01:38:13 +0000 |
commit | 4ab4b6817d90b6f3ca3f09ae568b51d7c9e53b54 (patch) | |
tree | b7ce05608c5950a56196e64f6bbe03a9193d853c /win32/build/registersyslog.php | |
parent | a008f130cdb05850b960340b9cb2b9ecf080c00d (diff) | |
download | php-git-4ab4b6817d90b6f3ca3f09ae568b51d7c9e53b54.tar.gz |
MFH: Silent dl() if it fails
Diffstat (limited to 'win32/build/registersyslog.php')
-rwxr-xr-x | win32/build/registersyslog.php | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |