summaryrefslogtreecommitdiff
path: root/inc/actions.php
diff options
context:
space:
mode:
authorDominik Eckelmann <deckelmann@gmail.com>2014-02-15 10:58:33 +0100
committerDominik Eckelmann <deckelmann@gmail.com>2014-02-15 10:58:33 +0100
commit40e0b44409037978b0bce4b451b1569c3bc3ee19 (patch)
tree1b234220d60a3ad7482b9e251c06d9f4de1ad252 /inc/actions.php
parentfd51614b39b1320c5723e8195f0bf69c25baaeb7 (diff)
downloadrpg-40e0b44409037978b0bce4b451b1569c3bc3ee19.tar.gz
rpg-40e0b44409037978b0bce4b451b1569c3bc3ee19.tar.bz2
use http_sendfile correct
Diffstat (limited to 'inc/actions.php')
-rw-r--r--inc/actions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/actions.php b/inc/actions.php
index 50cbe369f..4dbad1a32 100644
--- a/inc/actions.php
+++ b/inc/actions.php
@@ -697,7 +697,7 @@ function act_sitemap($act) {
// Send file
//use x-sendfile header to pass the delivery to compatible webservers
- if (http_sendfile($sitemap)) exit;
+ http_sendfile($sitemap);
readfile($sitemap);
exit;