From: Evan Prodromou Date: Wed, 29 May 2013 21:03:08 +0000 (-0400) Subject: Close the collection object X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2a3abf8850981db4718dd0edca62767e7601737c;p=quix0rs-gnu-social.git Close the collection object --- 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, ']}'); } }