From 7cb21067bbb44945d00284dc1318c0cf5ca8a975 Mon Sep 17 00:00:00 2001 From: saxmatt Date: Sat, 4 Oct 2003 18:23:59 +0000 Subject: [PATCH] Remove call by reference. git-svn-id: http://svn.automattic.com/wordpress/trunk@411 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- b2-include/b2functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/b2-include/b2functions.php b/b2-include/b2functions.php index 2e73bb087..af1ad7a58 100644 --- a/b2-include/b2functions.php +++ b/b2-include/b2functions.php @@ -1262,7 +1262,7 @@ function doGeoUrlHeader($posts) { } function getRemoteFile($host,$path) { - $fp = fsockopen($host, 80, &$errno, &$errstr); + $fp = fsockopen($host, 80, $errno, $errstr); if ($fp) { fputs($fp,"GET $path HTTP/1.0\r\nHost: $host\r\n\r\n"); while ($line = fgets($fp, 4096)) {