diff options
author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-08-28 16:27:05 +0200 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-08-28 16:27:05 +0200 |
commit | 90d18356a077dab1b0044cff40638a870ad757b0 (patch) | |
tree | fee6fb1e75154775c818c97bbe09b39db5af4f1f /phpBB/includes/functions.php | |
parent | eb2b3868bb278542b9beb9e63d3f5f9e1c834e84 (diff) | |
parent | f4c1796d5e7f21f3c08c3278170d8777e14b9169 (diff) | |
download | forums-90d18356a077dab1b0044cff40638a870ad757b0.tar forums-90d18356a077dab1b0044cff40638a870ad757b0.tar.gz forums-90d18356a077dab1b0044cff40638a870ad757b0.tar.bz2 forums-90d18356a077dab1b0044cff40638a870ad757b0.tar.xz forums-90d18356a077dab1b0044cff40638a870ad757b0.zip |
Merge pull request #3809 from marc1706/ticket/14070
[ticket/14070] Properly pass whether config should be ignored for avatars
* marc1706/ticket/14070:
[ticket/14070] Properly pass whether config should be ignored for avatars
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index fff55d993e..ac25f24ddd 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -4837,7 +4837,7 @@ function phpbb_get_avatar($row, $alt, $ignore_config = false, $lazy = false) ); $phpbb_avatar_manager = $phpbb_container->get('avatar.manager'); - $driver = $phpbb_avatar_manager->get_driver($row['avatar_type'], $ignore_config); + $driver = $phpbb_avatar_manager->get_driver($row['avatar_type'], !$ignore_config); $html = ''; if ($driver) |