aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_user.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2016-11-20 13:18:31 +0100
committerMarc Alexander <admin@m-a-styles.de>2016-11-20 13:18:31 +0100
commitc3108d44cee610fc6d1d397a6e6ce6e571829353 (patch)
tree72cf876fb2d624fdcc13f9c79f2a3c889ee95f48 /phpBB/includes/functions_user.php
parent20771271ca201f8729eecab5052da8a6423dab02 (diff)
parentd98fd7868ba75773fe89617f324f8516f63dfa16 (diff)
downloadforums-c3108d44cee610fc6d1d397a6e6ce6e571829353.tar
forums-c3108d44cee610fc6d1d397a6e6ce6e571829353.tar.gz
forums-c3108d44cee610fc6d1d397a6e6ce6e571829353.tar.bz2
forums-c3108d44cee610fc6d1d397a6e6ce6e571829353.tar.xz
forums-c3108d44cee610fc6d1d397a6e6ce6e571829353.zip
Merge branch '3.1.x' into 3.2.x
Diffstat (limited to 'phpBB/includes/functions_user.php')
-rw-r--r--phpBB/includes/functions_user.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php
index f29f974ccf..227ac3fe0c 100644
--- a/phpBB/includes/functions_user.php
+++ b/phpBB/includes/functions_user.php
@@ -2204,7 +2204,7 @@ function phpbb_avatar_explanation_string()
{
global $config, $user;
- return $user->lang('AVATAR_EXPLAIN',
+ return $user->lang(($config['avatar_filesize'] == 0) ? 'AVATAR_EXPLAIN_NO_FILESIZE' : 'AVATAR_EXPLAIN',
$user->lang('PIXELS', (int) $config['avatar_max_width']),
$user->lang('PIXELS', (int) $config['avatar_max_height']),
round($config['avatar_filesize'] / 1024));