diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-08-06 14:41:37 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-08-06 14:41:37 +0000 |
commit | 4d3add1686c222596f2875b71f77cdd587e42b16 (patch) | |
tree | 9c790a89f4cdc06c4fbfdaec17c97d556a9bd7a8 /phpBB/includes/functions_posting.php | |
parent | dca78b88a07f87d72edc9dc113f88b36883e2527 (diff) | |
download | forums-4d3add1686c222596f2875b71f77cdd587e42b16.tar forums-4d3add1686c222596f2875b71f77cdd587e42b16.tar.gz forums-4d3add1686c222596f2875b71f77cdd587e42b16.tar.bz2 forums-4d3add1686c222596f2875b71f77cdd587e42b16.tar.xz forums-4d3add1686c222596f2875b71f77cdd587e42b16.zip |
two fixes
git-svn-id: file:///svn/phpbb/trunk@8011 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_posting.php')
-rw-r--r-- | phpBB/includes/functions_posting.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index 4b38919e81..9e7449cd50 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -652,11 +652,23 @@ function create_thumbnail($source, $destination, $mimetype) if ($type['version'] == 1) { $new_image = imagecreate($new_width, $new_height); + + if ($new_image === false) + { + return false; + } + imagecopyresized($new_image, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height); } else { $new_image = imagecreatetruecolor($new_width, $new_height); + + if ($new_image === false) + { + return false; + } + imagecopyresampled($new_image, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height); } |