diff options
author | rxu <rxu@mail.ru> | 2019-09-13 00:25:18 +0700 |
---|---|---|
committer | rxu <rxu@mail.ru> | 2019-09-13 00:25:18 +0700 |
commit | 177cc226832b7a96be338b0eee71cd61746d8a02 (patch) | |
tree | 828d3dab9650e314a34088ae4b407c18d8d07ede /phpBB/phpbb/message | |
parent | 4db585a4cb2e5359074a82ef088574609155294b (diff) | |
download | forums-177cc226832b7a96be338b0eee71cd61746d8a02.tar forums-177cc226832b7a96be338b0eee71cd61746d8a02.tar.gz forums-177cc226832b7a96be338b0eee71cd61746d8a02.tar.bz2 forums-177cc226832b7a96be338b0eee71cd61746d8a02.tar.xz forums-177cc226832b7a96be338b0eee71cd61746d8a02.zip |
[ticket/16157] Fix FORM_INVALID error in the sending email form
PHPBB3-16157
Diffstat (limited to 'phpBB/phpbb/message')
-rw-r--r-- | phpBB/phpbb/message/form.php | 2 |
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)) |