aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/avatar/driver/local.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2013-01-25 01:24:15 +0100
committerMarc Alexander <admin@m-a-styles.de>2013-01-25 01:24:15 +0100
commit9c3538eb0e29c491d2f8c15c44c772e29631f4e3 (patch)
treebdbe15b863092afafbe5ad1a71f7898adaec4a22 /phpBB/includes/avatar/driver/local.php
parent869de98f52e636fd5b9f2a9f5b75d665e7009463 (diff)
downloadforums-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.php2
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'))
{