Check if filename is set before deleting
This commit is contained in:
parent
2e4e005a55
commit
5680522395
1 changed files with 4 additions and 1 deletions
|
@ -145,7 +145,10 @@ class OfferController extends AbstractController
|
|||
|
||||
if ($offer->getByUser() === $user)
|
||||
{
|
||||
unlink($photoDir . '/' . $offer->getPhotoFilename());
|
||||
if ($offer->getPhotoFilename())
|
||||
{
|
||||
unlink($photoDir . '/' . $offer->getPhotoFilename());
|
||||
}
|
||||
$this->entityManager->remove($offer);
|
||||
$this->entityManager->flush();
|
||||
$this->addFlash(
|
||||
|
|
Reference in a new issue