소스 검색

[HttpFoundation] Fixed indentation

Aurélien Fredouelle 14 년 전
부모
커밋
6ae2bdeabd
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Symfony/Component/HttpFoundation/Response.php

+ 1 - 1
src/Symfony/Component/HttpFoundation/Response.php

@@ -744,7 +744,7 @@ class Response
 
     protected function fixContentType()
     {
-	$charset = $this->charset ?: 'UTF-8';
+        $charset = $this->charset ?: 'UTF-8';
         if (!$this->headers->has('Content-Type')) {
             $this->headers->set('Content-Type', 'text/html; charset='.$charset);
         } elseif ('text/' === substr($this->headers->get('Content-Type'), 0, 5) && false === strpos($this->headers->get('Content-Type'), 'charset')) {