From c44ea6c9a8470859eb3832db55ad8e46117058b3 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Sat, 4 Oct 2003 18:23:59 +0000 Subject: [PATCH] Remove call by reference. git-svn-id: https://develop.svn.wordpress.org/trunk@411 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 2e73bb0877..af1ad7a58b 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)) {