diff options
author | Evan Prodromou <evan@status.net> | 2010-02-25 08:44:15 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-02-25 08:44:15 -0500 |
commit | e6858d7203bd36923f6251968bede6f4b271bf84 (patch) | |
tree | daf24ce51064058af226eb8e296476a3f9155473 /actions/showgroup.php | |
parent | ddc3671b6aeb0b543d261251a1740a53469684c3 (diff) |
modify group actions so they use Local_group to look up by nickname
Diffstat (limited to 'actions/showgroup.php')
-rw-r--r-- | actions/showgroup.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/actions/showgroup.php b/actions/showgroup.php index eb1238902..0139ba157 100644 --- a/actions/showgroup.php +++ b/actions/showgroup.php @@ -122,7 +122,15 @@ class ShowgroupAction extends GroupDesignAction return false; } - $this->group = User_group::staticGet('nickname', $nickname); + $local = Local_group::staticGet('nickname', $nickname); + + if (!$local) { + common_log(LOG_NOTICE, "Couldn't find local group for nickname '$nickname'"); + $this->clientError(_('No such group.'), 404); + return false; + } + + $this->group = User_group::staticGet('id', $local->group_id); if (!$this->group) { $alias = Group_alias::staticGet('alias', $nickname); |