소스 검색

Fix issue with nested admin and create action

Thomas Rabaix 13 년 전
부모
커밋
e172203b1c
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      Controller/CRUDController.php

+ 2 - 2
Controller/CRUDController.php

@@ -373,11 +373,11 @@ class CRUDController extends Controller
 
         $object = $this->admin->getNewInstance();
 
+        $this->admin->setSubject($object);
+
         $form = $this->admin->getForm();
         $form->setData($object);
 
-        $this->admin->setSubject($object);
-
         if ($this->get('request')->getMethod() == 'POST') {
             $form->bindRequest($this->get('request'));