summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2013-07-12 17:20:45 +0200
committerAndreas Gohr <andi@splitbrain.org>2013-07-12 17:20:45 +0200
commit89e71fa967a455a3c062b26a00af0e886fbecd86 (patch)
tree55d7154de2888cc1f95a3f4f6f0adfd0d3624938
parentdbd5b4caeac5f2f45d05da38f1a54282d972b3ce (diff)
downloadrpg-89e71fa967a455a3c062b26a00af0e886fbecd86.tar.gz
rpg-89e71fa967a455a3c062b26a00af0e886fbecd86.tar.bz2
fix function call in feedcreator FS#2805
the _redirect function is not used in DokuWiki anyway
-rw-r--r--inc/feedcreator.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/feedcreator.class.php b/inc/feedcreator.class.php
index ea8cc7b15..670a1bc29 100644
--- a/inc/feedcreator.class.php
+++ b/inc/feedcreator.class.php
@@ -599,7 +599,7 @@ class FeedCreator extends HtmlDescribable {
header("Content-Type: ".$this->contentType."; charset=".$this->encoding."; filename=".utf8_basename($filename));
header("Content-Disposition: inline; filename=".utf8_basename($filename));
- readfile($filename, "r");
+ readfile($filename);
die();
}