diff options
author | Marc Alexander <admin@m-a-styles.de> | 2013-07-11 17:30:32 -0400 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2013-07-11 17:30:32 -0400 |
commit | dc4687501a16b2c50a9ebfcb9f941a02d9572764 (patch) | |
tree | 58277fdfd34f4ee4381e8b6827efdd0ab58f0def /phpBB/includes/functions_admin.php | |
parent | 599f83395f90c9a899b0e639ba5acacfb8ae372b (diff) | |
parent | 94e5bfaadad3be2bcda5347754c3f1b5be33c620 (diff) | |
download | forums-dc4687501a16b2c50a9ebfcb9f941a02d9572764.tar forums-dc4687501a16b2c50a9ebfcb9f941a02d9572764.tar.gz forums-dc4687501a16b2c50a9ebfcb9f941a02d9572764.tar.bz2 forums-dc4687501a16b2c50a9ebfcb9f941a02d9572764.tar.xz forums-dc4687501a16b2c50a9ebfcb9f941a02d9572764.zip |
Merge branch 'develop-olympus' of https://github.com/phpbb/phpbb3 into ticket/11548
Diffstat (limited to 'phpBB/includes/functions_admin.php')
-rw-r--r-- | phpBB/includes/functions_admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_admin.php b/phpBB/includes/functions_admin.php index a9d1db24a5..2f73858ea2 100644 --- a/phpBB/includes/functions_admin.php +++ b/phpBB/includes/functions_admin.php @@ -3121,7 +3121,7 @@ function get_remote_file($host, $directory, $filename, &$errstr, &$errno, $port if ($fsock = @fsockopen($host, $port, $errno, $errstr, $timeout)) { - @fputs($fsock, "GET $directory/$filename HTTP/1.1\r\n"); + @fputs($fsock, "GET $directory/$filename HTTP/1.0\r\n"); @fputs($fsock, "HOST: $host\r\n"); @fputs($fsock, "Connection: close\r\n\r\n"); |