diff options
author | Brion Vibber <brion@pobox.com> | 2010-03-30 11:07:01 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-03-30 11:45:35 -0700 |
commit | 0284e1315cc95d94e1e348a0af3ac88f1abcd5ff (patch) | |
tree | e5e8ce87c4794a7aa8b83dc0dc69aee4e42f9f74 /lib/apiaction.php | |
parent | d38ce90fa12fcda80fb24d6366406d7b03f6a71b (diff) |
Quick fixes for grouplistall:
* respect count instead of listing all groups
* respect page parameter
* don't spew notice on undefined $id
* don't spew notice on undefined $group->homepage_url (dropped the element since there's nothing to go in it)
Diffstat (limited to 'lib/apiaction.php')
-rw-r--r-- | lib/apiaction.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/apiaction.php b/lib/apiaction.php index 9fc1a0779..59dc47c23 100644 --- a/lib/apiaction.php +++ b/lib/apiaction.php @@ -318,7 +318,6 @@ class ApiAction extends Action $twitter_group['url']=$group->permalink(); $twitter_group['nickname']=$group->nickname; $twitter_group['fullname']=$group->fullname; - $twitter_group['homepage_url']=$group->homepage_url; $twitter_group['original_logo']=$group->original_logo; $twitter_group['homepage_logo']=$group->homepage_logo; $twitter_group['stream_logo']=$group->stream_logo; |