From b31eac1592e1f29e0b3ce83e6663ac843ef22d8f Mon Sep 17 00:00:00 2001 From: Flavio Copes Date: Tue, 20 Oct 2015 16:36:39 +0200 Subject: [PATCH] Handle redirect for new group creation --- classes/controller.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/classes/controller.php b/classes/controller.php index 9f7e06da..b5a37f5f 100644 --- a/classes/controller.php +++ b/classes/controller.php @@ -1017,6 +1017,11 @@ class AdminController return true; } + if ($this->view == 'groups') { + $this->setRedirect("{$this->view}/{$this->post['groupname']}"); + return true; + } + if ($this->view != 'pages') { return false; }