diff options
author | Matt Friedman <maf675@gmail.com> | 2015-09-04 13:38:14 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2015-09-04 13:38:14 -0700 |
commit | 076807c63ab36684dc1dc6039092066a17d5c9b6 (patch) | |
tree | a4309f334d22da60dbeea65f8c7b262548bd6616 /phpBB/includes/functions.php | |
parent | 5faa12db4c4c02010e99c65e473024c018928603 (diff) | |
download | forums-076807c63ab36684dc1dc6039092066a17d5c9b6.tar forums-076807c63ab36684dc1dc6039092066a17d5c9b6.tar.gz forums-076807c63ab36684dc1dc6039092066a17d5c9b6.tar.bz2 forums-076807c63ab36684dc1dc6039092066a17d5c9b6.tar.xz forums-076807c63ab36684dc1dc6039092066a17d5c9b6.zip |
[ticket/14142] Remove unused ignore_configs from avatar drivers
PHPBB3-14142
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 ac25f24ddd..80d6e22bb7 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -4848,7 +4848,7 @@ function phpbb_get_avatar($row, $alt, $ignore_config = false, $lazy = false) return $html; } - $avatar_data = $driver->get_data($row, $ignore_config); + $avatar_data = $driver->get_data($row); } else { |