[Form] Set prototype to true by default.

This commit is contained in:
Benjamin Eberlei 2011-03-26 14:56:59 +01:00
parent d87651b6a2
commit f9e2864030

View File

@ -36,7 +36,7 @@ class CollectionType extends AbstractType
return array(
'template' => 'collection',
'modifiable' => false,
'prototype' => false,
'prototype' => true,
'type' => 'text',
);
}