From 595ac150ebe3bbee07cfbf30aa9113ebcc143208 Mon Sep 17 00:00:00 2001 From: michelvaldrighi Date: Sat, 16 Oct 2004 10:18:36 +0000 Subject: [PATCH] removed call time pass by reference in enclosures support git-svn-id: http://svn.automattic.com/wordpress/trunk@1806 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/post.php b/wp-admin/post.php index 34704c6d6a..4aa442a0b4 100644 --- a/wp-admin/post.php +++ b/wp-admin/post.php @@ -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 = '';