aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-09-08 13:34:58 +0200
committerMarc Alexander <admin@m-a-styles.de>2015-09-08 13:34:58 +0200
commit90d5eefccffce86e1c8ae857080a0ed25f7a79db (patch)
tree30ee6a3be4e921f7911169c811282dffd6748a5d /phpBB/includes
parent9537ec56eb4c37cd4aec905c0db35d4b46e73ac6 (diff)
parent076807c63ab36684dc1dc6039092066a17d5c9b6 (diff)
downloadforums-90d5eefccffce86e1c8ae857080a0ed25f7a79db.tar
forums-90d5eefccffce86e1c8ae857080a0ed25f7a79db.tar.gz
forums-90d5eefccffce86e1c8ae857080a0ed25f7a79db.tar.bz2
forums-90d5eefccffce86e1c8ae857080a0ed25f7a79db.tar.xz
forums-90d5eefccffce86e1c8ae857080a0ed25f7a79db.zip
Merge pull request #3881 from VSEphpbb/ticket/14142
[ticket/14142] Remove unused ignore_configs from avatar drivers
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 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
{