Преглед на файлове

[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')) {