mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
should have been fread.
git-svn-id: file:///svn/phpbb/trunk@6627 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
74a08d9a7b
commit
5be570b1f0
1 changed files with 1 additions and 1 deletions
|
@ -254,7 +254,7 @@ function send_file_to_browser($attachment, $upload_dir, $category)
|
|||
{
|
||||
while (!feof($fp))
|
||||
{
|
||||
echo fgets($fp, 8192);
|
||||
echo fread($fp, 8192);
|
||||
}
|
||||
fclose($fp);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue