Browse Source

Reverting Symfony's Response class to previous version

Signed-off-by: Koen Schmeets <k.schmeets@gmail.com>
Koen Schmeets 12 years ago
parent
commit
0f3e8eb62b
1 changed files with 4 additions and 0 deletions
  1. 4 0
      laravel/vendor/Symfony/Component/HttpFoundation/Response.php

+ 4 - 0
laravel/vendor/Symfony/Component/HttpFoundation/Response.php

@@ -292,6 +292,10 @@ class Response
         $this->sendHeaders();
         $this->sendContent();
 
+        if (function_exists('fastcgi_finish_request')) {
+            fastcgi_finish_request();
+        }
+
         return $this;
     }