diff options
| author | Kalle Sommer Nielsen <kalle@php.net> | 2009-05-27 01:37:51 +0000 |
|---|---|---|
| committer | Kalle Sommer Nielsen <kalle@php.net> | 2009-05-27 01:37:51 +0000 |
| commit | cbc025725e20e7a56ee3ac85dd35ce7c843a6d3c (patch) | |
| tree | 352e4427d77ea53625baa469bb5b271f1f55af7d | |
| parent | b1d948c97aa70699ae22d2cda5c2a99a833e9a9d (diff) | |
| download | php-git-cbc025725e20e7a56ee3ac85dd35ce7c843a6d3c.tar.gz | |
Silent dl() if it fails
| -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(); |
