removed call time pass by reference in enclosures support
git-svn-id: https://develop.svn.wordpress.org/trunk@1806 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
989de456b6
commit
df198e98cc
@ -384,7 +384,7 @@ $now_gmt = current_time('mysql', 1);
|
||||
$headers = "HEAD $file HTTP/1.1\r\nHOST: $host\r\n\r\n";
|
||||
$port = 80;
|
||||
$timeout = 3;
|
||||
$fp = fsockopen($host, $port, &$err_num, &$err_msg, $timeout);
|
||||
$fp = fsockopen($host, $port, $errno, $errstr, $timeout);
|
||||
if( $fp ) {
|
||||
fputs($fp, $headers );
|
||||
$response = '';
|
||||
|
Loading…
Reference in New Issue
Block a user