diff options
author | Marc Alexander <admin@m-a-styles.de> | 2013-01-25 01:24:15 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2013-01-25 01:24:15 +0100 |
commit | 9c3538eb0e29c491d2f8c15c44c772e29631f4e3 (patch) | |
tree | bdbe15b863092afafbe5ad1a71f7898adaec4a22 /phpBB/includes/avatar/driver/local.php | |
parent | 869de98f52e636fd5b9f2a9f5b75d665e7009463 (diff) | |
download | forums-9c3538eb0e29c491d2f8c15c44c772e29631f4e3.tar forums-9c3538eb0e29c491d2f8c15c44c772e29631f4e3.tar.gz forums-9c3538eb0e29c491d2f8c15c44c772e29631f4e3.tar.bz2 forums-9c3538eb0e29c491d2f8c15c44c772e29631f4e3.tar.xz forums-9c3538eb0e29c491d2f8c15c44c772e29631f4e3.zip |
[feature/avatars] Move list of supported formats to avatar driver class
Using the regex and turning it into an array if necessary seemed like the
cleanest approach to achieve this.
PHPBB3-10018
Diffstat (limited to 'phpBB/includes/avatar/driver/local.php')
-rw-r--r-- | phpBB/includes/avatar/driver/local.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/avatar/driver/local.php b/phpBB/includes/avatar/driver/local.php index b96b602f85..5132ecd389 100644 --- a/phpBB/includes/avatar/driver/local.php +++ b/phpBB/includes/avatar/driver/local.php @@ -162,7 +162,7 @@ class phpbb_avatar_driver_local extends phpbb_avatar_driver $image = $file_info->getFilename(); // Match all images in the gallery folder - if (preg_match('#^[^&\'"<>]+\.(?:gif|png|jpe?g)$#i', $image) && is_file($file_path . '/' . $image)) + if (preg_match('#^[^&\'"<>]+\.(?:'. self::REGEX_ALLOWED_EXT . ')$#i', $image) && is_file($file_path . '/' . $image)) { if (function_exists('getimagesize')) { |