aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-09-21 14:33:20 +0200
committerMarc Alexander <admin@m-a-styles.de>2019-09-21 14:33:20 +0200
commit0b2a0cc9b462fc158ed1b059426868cf97a16105 (patch)
tree2253ac3700eb59dcbaff6bae41377dc48c066308 /phpBB/phpbb
parentMerge pull request #5688 from rxu/ticket/16156 (diff)
parent[ticket/16157] Fix FORM_INVALID error in the sending email form (diff)
downloadphpbb-0b2a0cc9b462fc158ed1b059426868cf97a16105.tar.gz
phpbb-0b2a0cc9b462fc158ed1b059426868cf97a16105.tar.bz2
phpbb-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.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))