summaryrefslogtreecommitdiff
path: root/inc/fetch.functions.php
diff options
context:
space:
mode:
authorChristopher Smith <chris@jalakai.co.uk>2014-03-02 21:09:25 +0000
committerChristopher Smith <chris@jalakai.co.uk>2014-03-02 21:09:25 +0000
commit4b142187c1238555a14d79ff6e054a678ce828f3 (patch)
tree2d2a398218964e3bee0876385f9c8786a3baf8de /inc/fetch.functions.php
parent709fd92548efedbd4b4e5693097165d1dff072e4 (diff)
parentf327a5f0a9ef72e6dd79d9d200f81c330aa4903c (diff)
downloadrpg-4b142187c1238555a14d79ff6e054a678ce828f3.tar.gz
rpg-4b142187c1238555a14d79ff6e054a678ce828f3.tar.bz2
Merge pull request #581 from splitbrain/FS#2388_merged
FS#2388_merged
Diffstat (limited to 'inc/fetch.functions.php')
-rw-r--r--inc/fetch.functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/fetch.functions.php b/inc/fetch.functions.php
index 3eacaa2fe..c61c54503 100644
--- a/inc/fetch.functions.php
+++ b/inc/fetch.functions.php
@@ -77,7 +77,7 @@ function sendFile($file, $mime, $dl, $cache, $public = false, $orig = null) {
}
//use x-sendfile header to pass the delivery to compatible webservers
- if(http_sendfile($file)) exit;
+ http_sendfile($file);
// send file contents
$fp = @fopen($file, "rb");