Fix broken API method /api/statusnet/groups/leave/:id.:format

This commit is contained in:
Zach Copley 2010-01-06 16:21:29 -08:00
parent 22a88fb850
commit a1c3a2d3a1
2 changed files with 6 additions and 6 deletions

View File

@ -108,7 +108,7 @@ class ApiGroupLeaveAction extends ApiAuthAction
$member = new Group_member(); $member = new Group_member();
$member->group_id = $this->group->id; $member->group_id = $this->group->id;
$member->profile_id = $this->auth->id; $member->profile_id = $this->auth_user->id;
if (!$member->find(true)) { if (!$member->find(true)) {
$this->serverError(_('You are not a member of this group.')); $this->serverError(_('You are not a member of this group.'));
@ -118,12 +118,12 @@ class ApiGroupLeaveAction extends ApiAuthAction
$result = $member->delete(); $result = $member->delete();
if (!$result) { if (!$result) {
common_log_db_error($member, 'INSERT', __FILE__); common_log_db_error($member, 'DELETE', __FILE__);
$this->serverError( $this->serverError(
sprintf( sprintf(
_('Could not remove user %s to group %s.'), _('Could not remove user %s from group %s.'),
$this->user->nickname, $this->user->nickname,
$this->$group->nickname $this->group->nickname
) )
); );
return; return;

View File

@ -123,8 +123,8 @@ class LeavegroupAction extends Action
$result = $member->delete(); $result = $member->delete();
if (!$result) { if (!$result) {
common_log_db_error($member, 'INSERT', __FILE__); common_log_db_error($member, 'DELETE', __FILE__);
$this->serverError(sprintf(_('Could not remove user %s to group %s'), $this->serverError(sprintf(_('Could not remove user %s from group %s'),
$cur->nickname, $this->group->nickname)); $cur->nickname, $this->group->nickname));
} }