浏览代码

REFACTOR: Replaced deprecated property_path => false to mapped => false

luxemate 12 年之前
父节点
当前提交
1b5ead269d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Form/Type/AdminType.php

+ 1 - 1
Form/Type/AdminType.php

@@ -28,7 +28,7 @@ class AdminType extends AbstractType
         $admin = $this->getAdmin($options);
 
         if ($options['delete'] && $admin->isGranted('DELETE') ) {
-            $builder->add('_delete', 'checkbox', array('required' => false, 'property_path' => false));
+            $builder->add('_delete', 'checkbox', array('required' => false, 'mapped' => false));
         }
 
         if (!$admin->hasSubject()) {