From 5d5ca993a1874bda4b761b7e8d15f39d884b5d5b Mon Sep 17 00:00:00 2001 From: Gregory McLean Date: Sun, 11 Sep 2011 15:11:13 -0400 Subject: [PATCH] The captach field is not bound to a entity method by default. --- Type/CaptchaType.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Type/CaptchaType.php b/Type/CaptchaType.php index dc2a02a..3b1a354 100755 --- a/Type/CaptchaType.php +++ b/Type/CaptchaType.php @@ -87,7 +87,8 @@ class CaptchaType extends AbstractType return array( 'width' => $this->width, 'height' => $this->height, - 'length' => $this->length + 'length' => $this->length, + 'property_path' => false, ); }