aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_upload.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2007-01-06 19:37:09 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2007-01-06 19:37:09 +0000
commit48b76be50b4f7c9e6e5a627887534d9115419afd (patch)
tree0f54a3d68a5f6d541f1ff26b07e4e6da034622a9 /phpBB/includes/functions_upload.php
parent962be6ed09bc19bb255e3e9bbe0194831a922f5c (diff)
downloadforums-48b76be50b4f7c9e6e5a627887534d9115419afd.tar
forums-48b76be50b4f7c9e6e5a627887534d9115419afd.tar.gz
forums-48b76be50b4f7c9e6e5a627887534d9115419afd.tar.bz2
forums-48b76be50b4f7c9e6e5a627887534d9115419afd.tar.xz
forums-48b76be50b4f7c9e6e5a627887534d9115419afd.zip
tiny alterations
git-svn-id: file:///svn/phpbb/trunk@6846 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_upload.php')
-rw-r--r--phpBB/includes/functions_upload.php9
1 files changed, 6 insertions, 3 deletions
diff --git a/phpBB/includes/functions_upload.php b/phpBB/includes/functions_upload.php
index 31687ab3fe..e28c7fa64f 100644
--- a/phpBB/includes/functions_upload.php
+++ b/phpBB/includes/functions_upload.php
@@ -649,6 +649,9 @@ class fileupload
$filename = $url['path'];
$filesize = 0;
+ $errno = 0;
+ $errstr = '';
+
if (!($fsock = @fsockopen($host, $port, $errno, $errstr)))
{
$file = new fileerror($user->lang[$this->error_prefix . 'NOT_UPLOADED']);
@@ -677,11 +680,11 @@ class fileupload
}
else
{
- if (strpos($line, 'Content-Type: ') !== false)
+ if (stripos($line, 'content-type: ') !== false)
{
- $upload_ary['type'] = rtrim(str_replace('Content-Type: ', '', $line));
+ $upload_ary['type'] = rtrim(str_replace('content-type: ', '', strtolower($line)));
}
- else if (strpos($line, '404 Not Found') !== false)
+ else if (stripos($line, '404 not found') !== false)
{
$file = new fileerror($user->lang[$this->error_prefix . 'URL_NOT_FOUND']);
return $file;