diff options
-rw-r--r-- | actions/twitapifriendships.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/actions/twitapifriendships.php b/actions/twitapifriendships.php index 89b60e505..a8de77107 100644 --- a/actions/twitapifriendships.php +++ b/actions/twitapifriendships.php @@ -55,7 +55,9 @@ class TwitapifriendshipsAction extends TwitterapiAction { mail_subscribe_notify($other, $user); + common_start_xml(); $this->show_profile($other); + common_end_xml(); exit(); } @@ -88,7 +90,9 @@ class TwitapifriendshipsAction extends TwitterapiAction { $sub->delete(); } + common_start_xml(); $this->show_profile($other); + common_end_xml(); exit(); } |