Index: includes/common.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/common.inc,v retrieving revision 1.517 diff -u -r1.517 common.inc --- includes/common.inc 21 Feb 2006 18:46:53 -0000 1.517 +++ includes/common.inc 23 Feb 2006 10:52:20 -0000 @@ -366,8 +366,8 @@ // Fetch response. $response = ''; - while (!feof($fp) && $data = fread($fp, 1024)) { - $response .= $data; + while (!feof($fp) && $chunk = fread($fp, 1024)) { + $response .= $chunk; } fclose($fp); @@ -1337,4 +1337,4 @@ } } } -} +} \ No newline at end of file