[Form] Fixed textarea_widget (W3C standards)

This commit is contained in:
hlecorche 2011-11-18 17:31:57 +01:00
parent 12299c4de9
commit 78e9b2fedb

View File

@ -12,9 +12,19 @@
namespace Symfony\Component\Form\Extension\Core\Type;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormView;
use Symfony\Component\Form\FormInterface;
class TextareaType extends AbstractType
{
/**
* {@inheritdoc}
*/
public function buildView(FormView $view, FormInterface $form)
{
$view->set('pattern', null);
}
/**
* {@inheritdoc}
*/