remove fixme comment when not needed anymore

This commit is contained in:
Manuel Raynaud
2014-03-10 12:17:39 +01:00
parent 191a120aa5
commit e415b747ea
13 changed files with 6 additions and 51 deletions

View File

@@ -39,12 +39,6 @@ class AttributeModificationForm extends AttributeCreationForm
)
)
))
/* FIXME: doesn't work
->add('attribute_values', 'collection', array(
'type' => 'text',
'options' => array('required' => false)
))
*/
;
// Add standard description fields

View File

@@ -39,13 +39,7 @@ class FeatureModificationForm extends FeatureCreationForm
)
)
))
/* FIXME: doesn't work
->add('feature_values', 'collection', array(
'type' => 'text',
'options' => array('required' => false)
))
*/
;
;
// Add standard description fields
$this->addStandardDescFields();

View File

@@ -41,18 +41,6 @@ class TemplateModificationForm extends TemplateCreationForm
)
)
))
/*
->add('attributes', 'collection', array(
'type' => 'text',
'options' => array('required' => false)
))
*/
/* FIXME: doesn't work
->add('features', 'collection', array(
'type' => 'text',
'options' => array('required' => false)
))
*/
;
}