diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-02-08 21:58:25 +0000 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-02-08 21:58:25 +0000 |
commit | 00fda7ae5f1529b71ce9ab3c56e5406d018de737 (patch) | |
tree | 3ac209bd890693a1df6b492551aa72eda15b5f59 /actions | |
parent | dec0461d5fdd67ae9b5250beb859d6fed5af5609 (diff) |
Minor update to the way Facebook app handles listing of friends you've invited.
Diffstat (limited to 'actions')
-rw-r--r-- | actions/facebookinvite.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/facebookinvite.php b/actions/facebookinvite.php index 3c872f94b..ed59dda85 100644 --- a/actions/facebookinvite.php +++ b/actions/facebookinvite.php @@ -71,13 +71,13 @@ class FacebookinviteAction extends FacebookAction common_config('site', 'name'))); $this->element('p', null, _('Invitations have been sent to the following users:')); - $friend_ids = $_POST['ids']; // XXX: Hmm... is this the best way to acces the list? + $friend_ids = $_POST['ids']; // XXX: Hmm... is this the best way to access the list? $this->elementStart('ul', array('id' => 'facebook-friends')); foreach ($friend_ids as $friend) { $this->elementStart('li'); - $this->element('fb:profile-pic', array('uid' => $friend)); + $this->element('fb:profile-pic', array('uid' => $friend, 'size' => 'square')); $this->element('fb:name', array('uid' => $friend, 'capitalize' => 'true')); $this->elementEnd('li'); |