diff options
Diffstat (limited to 'actions/editgroup.php')
-rw-r--r-- | actions/editgroup.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/actions/editgroup.php b/actions/editgroup.php index 5f853a089..e0d4c0d03 100644 --- a/actions/editgroup.php +++ b/actions/editgroup.php @@ -96,6 +96,8 @@ class EditgroupAction extends Action $this->clientError(_('No such group'), 404); return false; } + + return true; } /** @@ -124,6 +126,12 @@ class EditgroupAction extends Action $this->showPage(); } + function showLocalNav() + { + $nav = new GroupNav($this, $this->group); + $nav->show(); + } + function showContent() { $form = new GroupEditForm($this, $this->group); |