소스 검색

[FrameworkBundle] Fixed getting template helper services not in the container's 'templating.helper' namespace

Kris Wallsmith 15 년 전
부모
커밋
7152ebb726
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Symfony/Bundle/FrameworkBundle/Templating/Engine.php

+ 1 - 1
src/Symfony/Bundle/FrameworkBundle/Templating/Engine.php

@@ -95,7 +95,7 @@ class Engine extends BaseEngine
         }
 
         if (is_string($this->helpers[$name])) {
-            $this->helpers[$name] = $this->container->get('templating.helper.'.$name);
+            $this->helpers[$name] = $this->container->get($this->helpers[$name]);
             $this->helpers[$name]->setCharset($this->charset);
         }