Use uniqid() instead of random_bytes()
This commit is contained in:
parent
633da5406b
commit
91fb30ed40
1 changed files with 3 additions and 3 deletions
|
@ -50,7 +50,7 @@ class OfferController extends AbstractController
|
|||
$offer->setCreatedAt(new \DateTime());
|
||||
|
||||
if ($photo = $form['photo']->getData()) {
|
||||
$filename = bin2hex(random_bytes(6)).'.'.$photo->guessExtension();
|
||||
$filename = uniqid().'.'.$photo->guessExtension();
|
||||
try {
|
||||
$photo->move($photoDir, $filename);
|
||||
} catch (FileException $e) {
|
||||
|
@ -103,7 +103,7 @@ class OfferController extends AbstractController
|
|||
public function editOffer(Offering $offer, OfferingRepository $offerRepository, Request $request, string $photoDir): Response
|
||||
{
|
||||
$form = $this->createForm(OfferingFormType::class, $offer);
|
||||
$user = $this->getUser();
|
||||
$user = $this->getUser();
|
||||
if ($offer->getByUser() === $user)
|
||||
{
|
||||
$form->handleRequest($request);
|
||||
|
@ -113,7 +113,7 @@ class OfferController extends AbstractController
|
|||
$offer->setCreatedAt(new \DateTime());
|
||||
|
||||
if ($photo = $form['photo']->getData()) {
|
||||
$filename = bin2hex(random_bytes(6)).'.'.$photo->guessExtension();
|
||||
$filename = uniqid(random_bytes(6)).'.'.$photo->guessExtension();
|
||||
try {
|
||||
$photo->move($photoDir, $filename);
|
||||
} catch (FileException $e) {
|
||||
|
|
Reference in a new issue