aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrxu <rxu@mail.ru>2019-09-13 00:25:18 +0700
committerrxu <rxu@mail.ru>2019-09-13 00:25:18 +0700
commit177cc226832b7a96be338b0eee71cd61746d8a02 (patch)
tree828d3dab9650e314a34088ae4b407c18d8d07ede /phpBB/phpbb
parentMerge pull request #5666 from mrgoldy/ticket/16084 (diff)
downloadphpbb-177cc226832b7a96be338b0eee71cd61746d8a02.tar.gz
phpbb-177cc226832b7a96be338b0eee71cd61746d8a02.tar.bz2
phpbb-177cc226832b7a96be338b0eee71cd61746d8a02.zip
[ticket/16157] Fix FORM_INVALID error in the sending email form
PHPBB3-16157
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/message/form.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/message/form.php b/phpBB/phpbb/message/form.php
index 63bada91ff..6573a04f8b 100644
--- a/phpBB/phpbb/message/form.php
+++ b/phpBB/phpbb/message/form.php
@@ -136,7 +136,7 @@ abstract class form
{
if (!check_form_key('memberlist_email'))
{
- $this->errors[] = 'FORM_INVALID';
+ $this->errors[] = $this->user->lang('FORM_INVALID');
}
if (!count($this->errors))