Selaa lähdekoodia

Add comment, fixes #4145

Jordi Boggiano 9 vuotta sitten
vanhempi
commit
9859859f10
1 muutettua tiedostoa jossa 2 lisäystä ja 0 poistoa
  1. 2 0
      src/Composer/Util/RemoteFilesystem.php

+ 2 - 0
src/Composer/Util/RemoteFilesystem.php

@@ -227,6 +227,8 @@ class RemoteFilesystem
                 if (preg_match('{^content-encoding: *gzip *$}i', $header)) {
                 if (preg_match('{^content-encoding: *gzip *$}i', $header)) {
                     $decode = true;
                     $decode = true;
                 } elseif (preg_match('{^HTTP/}i', $header)) {
                 } elseif (preg_match('{^HTTP/}i', $header)) {
+                    // In case of redirects, http_response_headers contains the headers of all responses
+                    // so we reset the flag when a new response is being parsed as we are only interested in the last response
                     $decode = false;
                     $decode = false;
                 }
                 }
             }
             }