commit | 3a555ef16dfe811815af83fdeccfebd6c04b99b2 | [log] [tgz] |
---|---|---|
author | Derek Allard <derek.allard@ellislab.com> | Thu Apr 17 22:03:00 2008 +0000 |
committer | Derek Allard <derek.allard@ellislab.com> | Thu Apr 17 22:03:00 2008 +0000 |
tree | 831c80414c3850af12c1fe70da27b79c0fe5a2ff | |
parent | 5162fc778acb1ecc8f879578e48bde9ce767775c [diff] [blame] |
The Download helper now exits within force-download().
diff --git a/system/helpers/download_helper.php b/system/helpers/download_helper.php index 2d0e737..5e47fc5 100644 --- a/system/helpers/download_helper.php +++ b/system/helpers/download_helper.php
@@ -91,7 +91,7 @@ header("Content-Length: ".strlen($data)); } - echo $data; + exit($data); } }