summaryrefslogtreecommitdiff
path: root/win32/build/registersyslog.php
diff options
context:
space:
mode:
authorKalle Sommer Nielsen <kalle@php.net>2009-05-27 01:38:13 +0000
committerKalle Sommer Nielsen <kalle@php.net>2009-05-27 01:38:13 +0000
commit4ab4b6817d90b6f3ca3f09ae568b51d7c9e53b54 (patch)
treeb7ce05608c5950a56196e64f6bbe03a9193d853c /win32/build/registersyslog.php
parenta008f130cdb05850b960340b9cb2b9ecf080c00d (diff)
downloadphp-git-4ab4b6817d90b6f3ca3f09ae568b51d7c9e53b54.tar.gz
MFH: Silent dl() if it fails
Diffstat (limited to 'win32/build/registersyslog.php')
-rwxr-xr-xwin32/build/registersyslog.php2
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();