diff --git a/classes/controller.php b/classes/controller.php index 550eba01..d8cad3df 100644 --- a/classes/controller.php +++ b/classes/controller.php @@ -380,7 +380,11 @@ class AdminController */ public function taskContinue() { - // Only applies to pages. + if ($this->view == 'users') { + $this->setRedirect("{$this->view}/{$this->post['username']}"); + return true; + } + if ($this->view != 'pages') { return false; } diff --git a/themes/grav/templates/partials/blueprints-new.html.twig b/themes/grav/templates/partials/blueprints-new.html.twig index f05fd841..1659c72c 100644 --- a/themes/grav/templates/partials/blueprints-new.html.twig +++ b/themes/grav/templates/partials/blueprints-new.html.twig @@ -1,7 +1,6 @@ {% set form_id = form_id ? form_id : 'blueprints' %}