Remove call by reference.

git-svn-id: http://svn.automattic.com/wordpress/trunk@411 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt 2003-10-04 18:23:59 +00:00
parent 1a261103b9
commit 7cb21067bb
1 changed files with 1 additions and 1 deletions

View File

@ -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)) {