Don't forget to concat. Props cschneid. fixes #2988

git-svn-id: http://svn.automattic.com/wordpress/branches/2.0@4222 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2006-09-25 01:38:34 +00:00
parent 7f6eafe9cc
commit 6d8a449d6b
1 changed files with 1 additions and 1 deletions

View File

@ -1239,7 +1239,7 @@ class Snoopy
$fp = fopen($file_name, "r");
while (!feof($fp)) {
$file_content = fread($fp, filesize($file_name));
$file_content .= fread($fp, filesize($file_name));
}
fclose($fp);
$base_name = basename($file_name);