diff options
author | Shashi Gowda <connect2shashi@gmail.com> | 2010-06-13 07:46:29 -0400 |
---|---|---|
committer | Shashi Gowda <connect2shashi@gmail.com> | 2010-06-13 07:46:29 -0400 |
commit | 874930052e634491b2564a4e1d45ba6de7f251b6 (patch) | |
tree | ff2053e39852a9ed1c415cf6781a0dcb9f294a1a /plugins/SocialObject/SocialObject.php | |
parent | 36db3d93306ce16e3586a003151a43f7cd28f675 (diff) |
Fixed parse errors.base_plugins
Diffstat (limited to 'plugins/SocialObject/SocialObject.php')
-rw-r--r-- | plugins/SocialObject/SocialObject.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/SocialObject/SocialObject.php b/plugins/SocialObject/SocialObject.php index f4b84dd9f..2d29e31d0 100644 --- a/plugins/SocialObject/SocialObject.php +++ b/plugins/SocialObject/SocialObject.php @@ -137,7 +137,6 @@ class SocialObject extends Memcached_DataObject } $this->free(); - $this = NULL; return $ids; } @@ -327,7 +326,7 @@ class SocialObject extends Memcached_DataObject # just return the $objects array, we can then use $notices->id # each time to get the object associated - return new array($notices, $objects); + return array($notices, $objects); } } } |