Browse Source

Silent dl() if it fails

experimental/first_unicode_implementation
Kalle Sommer Nielsen 17 years ago
parent
commit
cbc025725e
  1. 2
      win32/build/registersyslog.php

2
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();

Loading…
Cancel
Save