Merge pull request #2 from centove/master

Property path on the captacha type to false by defaultT
This commit is contained in:
Grégoire Passault 2011-09-11 12:17:02 -07:00
commit 22da6b0256
1 changed files with 2 additions and 1 deletions

View File

@ -87,7 +87,8 @@ class CaptchaType extends AbstractType
return array( return array(
'width' => $this->width, 'width' => $this->width,
'height' => $this->height, 'height' => $this->height,
'length' => $this->length 'length' => $this->length,
'property_path' => false,
); );
} }