瀏覽代碼

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…
取消
儲存