From 383703d170c59baf0cae32b612e04b4d292d1880 Mon Sep 17 00:00:00 2001 From: Michele Date: Thu, 21 Jan 2010 19:30:12 +0100 Subject: if the id is an alias we redirect using group_id --- actions/apigroupshow.php | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) (limited to 'actions') diff --git a/actions/apigroupshow.php b/actions/apigroupshow.php index 7aa49b1bf..852428144 100644 --- a/actions/apigroupshow.php +++ b/actions/apigroupshow.php @@ -85,12 +85,18 @@ class ApiGroupShowAction extends ApiPrivateAuthAction { parent::handle($args); - if (empty($this->group)) { - $this->clientError( - _('Group not found!'), - 404, - $this->format - ); + if (!$this->group) { + $alias = Group_alias::staticGet('alias', common_canonical_nickname($this->arg('id'))); + if ($alias) { + $args = array('id' => $alias->group_id, 'format'=>$this->format); + common_redirect(common_local_url('ApiGroupShow', $args), 301); + } else { + $this->clientError( + _('Group not found!'), + 404, + $this->format + ); + } return; } -- cgit v1.2.3-54-g00ecf