aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-04-18 14:01:21 +0200
committerMarc Alexander <admin@m-a-styles.de>2015-04-24 13:34:18 +0200
commit55c5bc126decffeaa74abdb853eb010cc3dcda8c (patch)
treea04b1550161b9cdd839aa5c8106a89e90d2c8ace /phpBB
parent31bcdb23a2a00f704efcd58877802ed5ac4507a9 (diff)
downloadforums-55c5bc126decffeaa74abdb853eb010cc3dcda8c.tar
forums-55c5bc126decffeaa74abdb853eb010cc3dcda8c.tar.gz
forums-55c5bc126decffeaa74abdb853eb010cc3dcda8c.tar.bz2
forums-55c5bc126decffeaa74abdb853eb010cc3dcda8c.tar.xz
forums-55c5bc126decffeaa74abdb853eb010cc3dcda8c.zip
[ticket/8672] User $user->lang() instead of sprintf
PHPBB3-8672
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/functions_upload.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_upload.php b/phpBB/includes/functions_upload.php
index ea82a23082..ac5313ca06 100644
--- a/phpBB/includes/functions_upload.php
+++ b/phpBB/includes/functions_upload.php
@@ -417,11 +417,11 @@ class filespec
{
if (!isset($types[$this->image_info['type']]))
{
- $this->error[] = sprintf($user->lang['IMAGE_FILETYPE_INVALID'], $this->image_info['type'], $this->mimetype);
+ $this->error[] = $user->lang('IMAGE_FILETYPE_INVALID', $this->image_info['type'], $this->mimetype);
}
else
{
- $this->error[] = sprintf($user->lang['IMAGE_FILETYPE_MISMATCH'], $types[$this->image_info['type']][0], $this->extension);
+ $this->error[] = $user->lang('IMAGE_FILETYPE_MISMATCH', $types[$this->image_info['type']][0], $this->extension);
}
}