diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-05-19 16:40:56 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-05-19 16:40:56 +0000 |
commit | 4c44eddc907f1e17a6880fdba918d6523c2f660f (patch) | |
tree | 61f3bde2129aa9d341b7b01b0ed095b3f797e140 /phpBB/download.php | |
parent | 47d3e4d9b8949d98e86373de0931e928e5ae09ef (diff) | |
download | forums-4c44eddc907f1e17a6880fdba918d6523c2f660f.tar forums-4c44eddc907f1e17a6880fdba918d6523c2f660f.tar.gz forums-4c44eddc907f1e17a6880fdba918d6523c2f660f.tar.bz2 forums-4c44eddc907f1e17a6880fdba918d6523c2f660f.tar.xz forums-4c44eddc907f1e17a6880fdba918d6523c2f660f.zip |
we included a check for getimagesize() existance... now we again can suppress notices while running this function.
git-svn-id: file:///svn/phpbb/trunk@7646 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/download.php')
-rw-r--r-- | phpBB/download.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/download.php b/phpBB/download.php index c1f28c080f..c24ea81425 100644 --- a/phpBB/download.php +++ b/phpBB/download.php @@ -294,7 +294,7 @@ function send_avatar_to_browser($file) { header('Pragma: public'); - $image_data = getimagesize($file_path); + $image_data = @getimagesize($file_path); header('Content-Type: ' . image_type_to_mime_type($image_data[2])); if (strpos(strtolower($browser), 'msie') !== false) |