From: Mike Macgirvin Date: Thu, 14 Oct 2010 02:06:52 +0000 (-0700) Subject: set correct content-type on feeds, status.net is fussy and ignores the one declared... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=bf77043b5137dcfe2d59a49d300e01be3e6e3674;p=friendica.git set correct content-type on feeds, status.net is fussy and ignores the one declared in the xrd --- diff --git a/mod/dfrn_poll.php b/mod/dfrn_poll.php index f5a7619834..fc663f7977 100644 --- a/mod/dfrn_poll.php +++ b/mod/dfrn_poll.php @@ -27,6 +27,7 @@ function dfrn_poll_init(&$a) { } if(($dfrn_id === '') && (! x($_POST,'dfrn_id')) && ($a->argc > 1)) { + header("Content-type: application/atom+xml"); $o = get_feed_for($a, '*', $a->argv[1],$last_update); echo $o; killme(); @@ -203,6 +204,7 @@ function dfrn_poll_post(&$a) { // NOTREACHED } else { + header("Content-type: application/atom+xml"); $o = get_feed_for($a,$dfrn_id, $a->argv[1], $last_update, $direction); echo $o; killme();