diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-02-07 16:32:25 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-02-07 16:32:25 +0000 |
commit | 766e311ff35b486a2f01b1cb2cf4fef3df290825 (patch) | |
tree | 7e3cf76f8c0419e004cd8e7705717d2c3d8fc205 /phpBB/includes/functions_upload.php | |
parent | 458bd5b3cdec51fd64f4a4056cb419bbbc099907 (diff) | |
download | forums-766e311ff35b486a2f01b1cb2cf4fef3df290825.tar forums-766e311ff35b486a2f01b1cb2cf4fef3df290825.tar.gz forums-766e311ff35b486a2f01b1cb2cf4fef3df290825.tar.bz2 forums-766e311ff35b486a2f01b1cb2cf4fef3df290825.tar.xz forums-766e311ff35b486a2f01b1cb2cf4fef3df290825.zip |
adjust text for getting image dimensions as well as not suppressing warnings for getimagesize()
git-svn-id: file:///svn/phpbb/trunk@6973 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_upload.php')
-rw-r--r-- | phpBB/includes/functions_upload.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_upload.php b/phpBB/includes/functions_upload.php index 489f3e942e..3f40a35bb2 100644 --- a/phpBB/includes/functions_upload.php +++ b/phpBB/includes/functions_upload.php @@ -313,7 +313,7 @@ class filespec { $this->width = $this->height = 0; - if (($this->image_info = @getimagesize($this->destination_file)) !== false) + if (($this->image_info = getimagesize($this->destination_file)) !== false) { $this->width = $this->image_info[0]; $this->height = $this->image_info[1]; |