diff options
author | Andreas Gohr <andi@splitbrain.org> | 2013-07-12 17:20:45 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2013-07-12 17:20:45 +0200 |
commit | 89e71fa967a455a3c062b26a00af0e886fbecd86 (patch) | |
tree | 55d7154de2888cc1f95a3f4f6f0adfd0d3624938 /inc/feedcreator.class.php | |
parent | dbd5b4caeac5f2f45d05da38f1a54282d972b3ce (diff) | |
download | rpg-89e71fa967a455a3c062b26a00af0e886fbecd86.tar.gz rpg-89e71fa967a455a3c062b26a00af0e886fbecd86.tar.bz2 |
fix function call in feedcreator FS#2805
the _redirect function is not used in DokuWiki anyway
Diffstat (limited to 'inc/feedcreator.class.php')
-rw-r--r-- | inc/feedcreator.class.php | 2 |
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(); } |