You need to add your entity to the bind

$form->bind($this->get('request'), $news); 

        // If the form has been submitted and is valid... 
        if ($form->isValid()) { 
          $em = $this->getEm(); 
          $em->persist($news); 
          $em->flush(); 
          return $this->redirect($this->generateUrl('news')); 
        } 

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

You received this message because you are subscribed to the Google
Groups "symfony users" group.
To post to this group, send email to symfony-users@googlegroups.com
To unsubscribe from this group, send email to
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en

Reply via email to