summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKalle Sommer Nielsen <kalle@php.net>2009-05-27 01:37:51 +0000
committerKalle Sommer Nielsen <kalle@php.net>2009-05-27 01:37:51 +0000
commitcbc025725e20e7a56ee3ac85dd35ce7c843a6d3c (patch)
tree352e4427d77ea53625baa469bb5b271f1f55af7d
parentb1d948c97aa70699ae22d2cda5c2a99a833e9a9d (diff)
downloadphp-git-cbc025725e20e7a56ee3ac85dd35ce7c843a6d3c.tar.gz
Silent dl() if it fails
-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();