Преглед изворни кода

Backend : correction affichage des images dans les formulaires

master
Guillaume пре 4 година
родитељ
комит
2b7c4ba33c
1 измењених фајлова са 4 додато и 2 уклоњено
  1. +4
    -2
      ShopBundle/Twig/FrontendTwigExtension.php

+ 4
- 2
ShopBundle/Twig/FrontendTwigExtension.php Прегледај датотеку

@@ -70,8 +70,10 @@ class FrontendTwigExtension extends AbstractExtension
if (substr($path, 0, 1) === '/') $path = substr($path, 1);

if ($path) {
if (strpos($path, $this->getFileManagerFolder()) === false) {
$path = $this->getFileManagerFolder() . '/' . $path;
$fileManagerFolder = substr($this->getFileManagerFolder(), 1) ;

if (strpos($path, $fileManagerFolder) === false) {
$path = $fileManagerFolder . '/' . $path;
}

return $this->liipCacheHelper->getBrowserPath($path, $thumb);

Loading…
Откажи
Сачувај