diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-11-16 15:53:09 -0500 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-11-16 15:53:09 -0500 |
commit | 003e4e2a23054af3b5dc554664d655cf88ad4799 (patch) | |
tree | 8f3fde70cf4fe5f63e3af44d8c7642f6041029db /actions/apigroupmembership.php | |
parent | a373d07ae00b878f47970f2e4a7d86c6ec3a65cf (diff) | |
parent | e14c88f6c52fddeeb26c71f13e93db7a8fabdd3b (diff) |
Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 0.9.x
Diffstat (limited to 'actions/apigroupmembership.php')
-rw-r--r-- | actions/apigroupmembership.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/actions/apigroupmembership.php b/actions/apigroupmembership.php index d221a6418..dd2843161 100644 --- a/actions/apigroupmembership.php +++ b/actions/apigroupmembership.php @@ -87,6 +87,11 @@ class ApiGroupMembershipAction extends ApiPrivateAuthAction { parent::handle($args); + if (empty($this->group)) { + $this->clientError(_('Group not found!'), 404, $this->format); + return false; + } + // XXX: RSS and Atom switch($this->format) { |