From 2a3abf8850981db4718dd0edca62767e7601737c Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 29 May 2013 17:03:08 -0400 Subject: [PATCH] Close the collection object --- lib/useractivitystream.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/useractivitystream.php b/lib/useractivitystream.php index 962ef77bd5..5422afc2c0 100644 --- a/lib/useractivitystream.php +++ b/lib/useractivitystream.php @@ -318,6 +318,6 @@ class UserActivityStream extends AtomUserNoticeFeed require_once INSTALLDIR.'/lib/activitystreamjsondocument.php'; fwrite($handle, '{"items": ['); $this->renderEntries(Feed::JSON, $handle); - fwrite($handle, ']'); + fwrite($handle, ']}'); } }