소스 검색

[HttpKernel] fixed typo

Fabien Potencier 15 년 전
부모
커밋
cf6885a0a9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Symfony/Components/HttpKernel/Cache/Esi.php

+ 1 - 1
src/Symfony/Components/HttpKernel/Cache/Esi.php

@@ -139,7 +139,7 @@ class Esi
             $type = 'text/html';
         }
 
-        $parts = implode(';', $type);
+        $parts = explode(';', $type);
         if (!in_array($parts[0], $this->contentTypes)) {
             return $response;
         }