From bf77043b5137dcfe2d59a49d300e01be3e6e3674 Mon Sep 17 00:00:00 2001 From: Mike Macgirvin Date: Wed, 13 Oct 2010 19:06:52 -0700 Subject: [PATCH] set correct content-type on feeds, status.net is fussy and ignores the one declared in the xrd --- mod/dfrn_poll.php | 2 ++ 1 file changed, 2 insertions(+) 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();