From 260fc63a64f9a896fdb4d9e13276bbaccba2f7ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Sun, 16 Nov 2014 22:54:17 +0100 Subject: [PATCH] after person creation, redirect to general form fix #337 --- Controller/PersonController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Controller/PersonController.php b/Controller/PersonController.php index 0da0cf32d..dbaa81e3f 100644 --- a/Controller/PersonController.php +++ b/Controller/PersonController.php @@ -330,7 +330,7 @@ class PersonController extends Controller $em->flush(); - return $this->redirect($this->generateUrl('chill_person_view', + return $this->redirect($this->generateUrl('chill_person_general_edit', array('person_id' => $person->getId()))); } else { $r = new Response('this should not happen if you reviewed your submission');