diff options
author | Zach Copley <zach@status.net> | 2010-01-06 16:21:29 -0800 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-01-06 16:21:29 -0800 |
commit | a1c3a2d3a12c1667492e4107007b31ec3a1f9c7b (patch) | |
tree | 0d1c3f6711c704567d0ed06834d33bf8ac32062a /actions | |
parent | 22a88fb850ecbfbf2c74accea605ee2942d3b0e4 (diff) |
Fix broken API method /api/statusnet/groups/leave/:id.:format
Diffstat (limited to 'actions')
-rw-r--r-- | actions/apigroupleave.php | 8 | ||||
-rw-r--r-- | actions/leavegroup.php | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/actions/apigroupleave.php b/actions/apigroupleave.php index 514a3a557..5627bfc14 100644 --- a/actions/apigroupleave.php +++ b/actions/apigroupleave.php @@ -108,7 +108,7 @@ class ApiGroupLeaveAction extends ApiAuthAction $member = new Group_member(); $member->group_id = $this->group->id; - $member->profile_id = $this->auth->id; + $member->profile_id = $this->auth_user->id; if (!$member->find(true)) { $this->serverError(_('You are not a member of this group.')); @@ -118,12 +118,12 @@ class ApiGroupLeaveAction extends ApiAuthAction $result = $member->delete(); 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.'), + _('Could not remove user %s from group %s.'), $this->user->nickname, - $this->$group->nickname + $this->group->nickname ) ); return; diff --git a/actions/leavegroup.php b/actions/leavegroup.php index 08fce1509..90c85e1a4 100644 --- a/actions/leavegroup.php +++ b/actions/leavegroup.php @@ -123,8 +123,8 @@ class LeavegroupAction extends Action $result = $member->delete(); if (!$result) { - common_log_db_error($member, 'INSERT', __FILE__); - $this->serverError(sprintf(_('Could not remove user %s to group %s'), + common_log_db_error($member, 'DELETE', __FILE__); + $this->serverError(sprintf(_('Could not remove user %s from group %s'), $cur->nickname, $this->group->nickname)); } |