diff options
author | Florian Pritz <bluewind@xssn.at> | 2010-02-26 17:46:46 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xssn.at> | 2010-02-26 17:46:46 +0100 |
commit | d3e4293d43ca8bd63e6fd2a10d6363485fe2eb6c (patch) | |
tree | 76fd908db64bfa8444e4650d0864da4bf3a8e1b3 | |
parent | 83bdc4bc426e838498bb89d3d2daa50463bf192b (diff) |
remove useless variable in download()
Signed-off-by: Florian Pritz <bluewind@xssn.at>
-rw-r--r-- | system/application/controllers/file.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/system/application/controllers/file.php b/system/application/controllers/file.php index 7d9ca24ec..96165eb55 100644 --- a/system/application/controllers/file.php +++ b/system/application/controllers/file.php @@ -193,8 +193,7 @@ class File extends Controller { header('Etag: "'.$etag.'"'); $fp = fopen($file,"r"); while (!feof($fp)) { - $buff = fread($fp,4096); - echo $buff; + echo fread($fp,4096); } fclose($fp); } |