diff options
Diffstat (limited to 'inc/3rdparty/libraries')
-rwxr-xr-x | inc/3rdparty/libraries/feedwriter/FeedWriter.php | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/inc/3rdparty/libraries/feedwriter/FeedWriter.php b/inc/3rdparty/libraries/feedwriter/FeedWriter.php index df4c8b4b..79639c0c 100755 --- a/inc/3rdparty/libraries/feedwriter/FeedWriter.php +++ b/inc/3rdparty/libraries/feedwriter/FeedWriter.php | |||
@@ -89,18 +89,11 @@ define('JSONP', 3, true); | |||
89 | */ | 89 | */ |
90 | public function genarateFeed() | 90 | public function genarateFeed() |
91 | { | 91 | { |
92 | if ($this->version == RSS2) { | 92 | header('Content-type: text/xml; charset=UTF-8'); |
93 | // header('Content-type: text/xml; charset=UTF-8'); | 93 | // this line prevents Chrome 20 from prompting download |
94 | // this line prevents Chrome 20 from prompting download | 94 | // used by Google: https://news.google.com/news/feeds?ned=us&topic=b&output=rss |
95 | // used by Google: https://news.google.com/news/feeds?ned=us&topic=b&output=rss | 95 | header('X-content-type-options: nosniff'); |
96 | // header('X-content-type-options: nosniff'); | 96 | |
97 | } elseif ($this->version == JSON) { | ||
98 | // header('Content-type: application/json; charset=UTF-8'); | ||
99 | $this->json = new stdClass(); | ||
100 | } elseif ($this->version == JSONP) { | ||
101 | // header('Content-type: application/javascript; charset=UTF-8'); | ||
102 | $this->json = new stdClass(); | ||
103 | } | ||
104 | $this->printHead(); | 97 | $this->printHead(); |
105 | $this->printChannels(); | 98 | $this->printChannels(); |
106 | $this->printItems(); | 99 | $this->printItems(); |