diff options
author | Marc Alexander <admin@m-a-styles.de> | 2019-09-21 14:33:20 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-09-21 14:33:20 +0200 |
commit | 0b2a0cc9b462fc158ed1b059426868cf97a16105 (patch) | |
tree | 2253ac3700eb59dcbaff6bae41377dc48c066308 /phpBB/phpbb | |
parent | 680acb45e2c1c0a3e39e432e3d4062f29b21f787 (diff) | |
parent | 177cc226832b7a96be338b0eee71cd61746d8a02 (diff) | |
download | forums-0b2a0cc9b462fc158ed1b059426868cf97a16105.tar forums-0b2a0cc9b462fc158ed1b059426868cf97a16105.tar.gz forums-0b2a0cc9b462fc158ed1b059426868cf97a16105.tar.bz2 forums-0b2a0cc9b462fc158ed1b059426868cf97a16105.tar.xz forums-0b2a0cc9b462fc158ed1b059426868cf97a16105.zip |
Merge pull request #5687 from rxu/ticket/16157
[ticket/16157] Fix FORM_INVALID error in the sending email form
Diffstat (limited to 'phpBB/phpbb')
-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)) |