aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
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
parent680acb45e2c1c0a3e39e432e3d4062f29b21f787 (diff)
parent177cc226832b7a96be338b0eee71cd61746d8a02 (diff)
downloadforums-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.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))