Remove call by reference.

git-svn-id: https://develop.svn.wordpress.org/trunk@411 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2003-10-04 18:23:59 +00:00
parent 5f7611dcbe
commit c44ea6c9a8
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)) {