|
@@ -143,8 +143,11 @@ class VideothequeController extends Controller
|
|
|
if ($form->isSubmitted() && $form->isValid())
|
|
|
{
|
|
|
$em = $this->getDoctrine()->getManager();
|
|
|
- $commenraire = $em->getRepository('AppBundle:Commentaire')->findOneBy(array('film'=>$film));
|
|
|
- $em->remove($commenraire);
|
|
|
+ $commentaire = $em->getRepository('AppBundle:Commentaire')->findOneBy(array('film'=>$film));
|
|
|
+ if ($commentaire != null)
|
|
|
+ {
|
|
|
+ $em->remove($commentaire);
|
|
|
+ }
|
|
|
$em->remove($film);
|
|
|
$em->flush();
|
|
|
$this->addFlash('success', 'Le film '.$film->getTitre().' a bien été supprimé.');
|