Explorar el Código

[Backend] Duplicate imgae

develop
Fab hace 3 años
padre
commit
496c5ff32d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      ShopBundle/Services/UtilsProcess.php

+ 1
- 1
ShopBundle/Services/UtilsProcess.php Ver fichero

@@ -93,7 +93,7 @@ class UtilsProcess


if ($entity->getImage() && file_exists($basePath . $entity->getImage())) {
$extension = pathinfo($basePath . $entity->getImage(), PATHINFO_EXTENSION);
$extension = strtolower(pathinfo($basePath . $entity->getImage(), PATHINFO_EXTENSION));

if ($extension == "jpg" || $extension == "png" || $extension == "gif") {
$newImage = md5(uniqid()) . '.' . $extension;

Cargando…
Cancelar
Guardar