diff options
author | Brion Vibber <brion@pobox.com> | 2010-02-16 22:04:57 +0000 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-02-16 22:04:57 +0000 |
commit | 880acb05b0f51f873e72a7b4d322cefafe7e850c (patch) | |
tree | 00226a03f3330d739297b19b64fac98ef9f34063 | |
parent | 440ab9039178bfc58c55316eb9ba2e19551bd12b (diff) |
OStatus: temporary output mode hack for apitimelineuser until PuSH feed generation is updated to use the shared code instead of output buffering
-rw-r--r-- | actions/apitimelineuser.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/actions/apitimelineuser.php b/actions/apitimelineuser.php index 24752e45f..9f7ec4c23 100644 --- a/actions/apitimelineuser.php +++ b/actions/apitimelineuser.php @@ -196,7 +196,8 @@ class ApiTimelineUserAction extends ApiBareAuthAction $atom->addEntryFromNotices($this->notices); - $this->raw($atom->getString()); + #$this->raw($atom->getString()); + print $atom->getString(); // temporary for output buffering break; case 'json': |