mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-12 12:25:07 -05:00
[fix] rss feed content type set to text/xml #636
This commit is contained in:
parent
847f57686e
commit
6212acfc81
13
inc/3rdparty/libraries/feedwriter/FeedWriter.php
vendored
13
inc/3rdparty/libraries/feedwriter/FeedWriter.php
vendored
@ -89,18 +89,11 @@ define('JSONP', 3, true);
|
|||||||
*/
|
*/
|
||||||
public function genarateFeed()
|
public function genarateFeed()
|
||||||
{
|
{
|
||||||
if ($this->version == RSS2) {
|
header('Content-type: text/xml; charset=UTF-8');
|
||||||
// header('Content-type: text/xml; charset=UTF-8');
|
|
||||||
// this line prevents Chrome 20 from prompting download
|
// this line prevents Chrome 20 from prompting download
|
||||||
// used by Google: https://news.google.com/news/feeds?ned=us&topic=b&output=rss
|
// used by Google: https://news.google.com/news/feeds?ned=us&topic=b&output=rss
|
||||||
// header('X-content-type-options: nosniff');
|
header('X-content-type-options: nosniff');
|
||||||
} elseif ($this->version == JSON) {
|
|
||||||
// header('Content-type: application/json; charset=UTF-8');
|
|
||||||
$this->json = new stdClass();
|
|
||||||
} elseif ($this->version == JSONP) {
|
|
||||||
// header('Content-type: application/javascript; charset=UTF-8');
|
|
||||||
$this->json = new stdClass();
|
|
||||||
}
|
|
||||||
$this->printHead();
|
$this->printHead();
|
||||||
$this->printChannels();
|
$this->printChannels();
|
||||||
$this->printItems();
|
$this->printItems();
|
||||||
|
Loading…
Reference in New Issue
Block a user