aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-08-05 17:46:17 +0200
committerMarc Alexander <admin@m-a-styles.de>2015-08-05 17:46:17 +0200
commitf4c1796d5e7f21f3c08c3278170d8777e14b9169 (patch)
tree023e6fddaebdcf5ea97c50480b8e29d3c88609c6 /phpBB/includes
parent4aac578908b5bd2d1e176172b37c72828022f460 (diff)
downloadforums-f4c1796d5e7f21f3c08c3278170d8777e14b9169.tar
forums-f4c1796d5e7f21f3c08c3278170d8777e14b9169.tar.gz
forums-f4c1796d5e7f21f3c08c3278170d8777e14b9169.tar.bz2
forums-f4c1796d5e7f21f3c08c3278170d8777e14b9169.tar.xz
forums-f4c1796d5e7f21f3c08c3278170d8777e14b9169.zip
[ticket/14070] Properly pass whether config should be ignored for avatars
PHPBB3-14070
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index 82aa91429c..38c879e272 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)