浏览代码

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'));