diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-04-07 16:19:36 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-04-24 13:33:14 +0200 |
commit | 39d6180c6814996dde84cfcd8c0150bba37354ac (patch) | |
tree | bf5bb1d69e0416a5d84ce6f76fdcee72605a80e4 /phpBB/phpbb/avatar/driver/local.php | |
parent | 3fc7a352ff308ff4b5a038e807a6f803572242d5 (diff) | |
download | forums-39d6180c6814996dde84cfcd8c0150bba37354ac.tar forums-39d6180c6814996dde84cfcd8c0150bba37354ac.tar.gz forums-39d6180c6814996dde84cfcd8c0150bba37354ac.tar.bz2 forums-39d6180c6814996dde84cfcd8c0150bba37354ac.tar.xz forums-39d6180c6814996dde84cfcd8c0150bba37354ac.zip |
[ticket/8672] Use fastImageSize in classes
PHPBB3-8672
Diffstat (limited to 'phpBB/phpbb/avatar/driver/local.php')
-rw-r--r-- | phpBB/phpbb/avatar/driver/local.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/avatar/driver/local.php b/phpBB/phpbb/avatar/driver/local.php index abb07469de..88a139f81e 100644 --- a/phpBB/phpbb/avatar/driver/local.php +++ b/phpBB/phpbb/avatar/driver/local.php @@ -172,7 +172,7 @@ class local extends \phpbb\avatar\driver\driver // Match all images in the gallery folder if (preg_match('#^[^&\'"<>]+\.(?:' . implode('|', $this->allowed_extensions) . ')$#i', $image) && is_file($file_path . '/' . $image)) { - $dims = $this->imagesize->get_imagesize($file_path . '/' . $image); + $dims = $this->imagesize->getImageSize($file_path . '/' . $image); if ($dims === false) { |