diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-07-18 00:25:11 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-07-18 00:25:11 -0400 |
commit | abfe53311fd404c1b97c27e45aa0c0a915560bb1 (patch) | |
tree | 4c3565e10e5bfc41d9c647529abb633c3b4338a1 /actions/twitapifriendships.php | |
parent | 566d9ad20d2c2d9ac3ed11a27c7f09cdd46ee742 (diff) |
start and end xml
darcs-hash:20080718042511-84dde-577d462b1441a30d1d88cc8e26dde32bde79c9fd.gz
Diffstat (limited to 'actions/twitapifriendships.php')
-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(); } |