aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDhruv <dhruv.goel92@gmail.com>2013-01-27 03:09:52 +0530
committerDhruv <dhruv.goel92@gmail.com>2013-04-25 21:01:19 +0530
commitf1e615c4297a509325b764e1966118fe171ebbb5 (patch)
tree22f476a34af4e1afbffd95fe523652287a3fc5cb
parent1a51abcca293b0e2bd836af0dcb9d77054c1d401 (diff)
downloadforums-f1e615c4297a509325b764e1966118fe171ebbb5.tar
forums-f1e615c4297a509325b764e1966118fe171ebbb5.tar.gz
forums-f1e615c4297a509325b764e1966118fe171ebbb5.tar.bz2
forums-f1e615c4297a509325b764e1966118fe171ebbb5.tar.xz
forums-f1e615c4297a509325b764e1966118fe171ebbb5.zip
[ticket/10325] fix language variable
PHPBB3-10325
-rw-r--r--phpBB/includes/ucp/ucp_remind.php2
-rw-r--r--phpBB/language/en/ucp.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/ucp/ucp_remind.php b/phpBB/includes/ucp/ucp_remind.php
index 4a2d06e99a..cd4d13c8a7 100644
--- a/phpBB/includes/ucp/ucp_remind.php
+++ b/phpBB/includes/ucp/ucp_remind.php
@@ -31,7 +31,7 @@ class ucp_remind
if (!$config['allow_password_reset'])
{
- trigger_error($user->lang('UCP_FORGOT_PASSWORD_DISABLE', '<a href="mailto:' . htmlspecialchars($config['board_contact']) . '">', '</a>'));
+ trigger_error($user->lang('UCP_FORGOT_PASSWORD_DISABLED', '<a href="mailto:' . htmlspecialchars($config['board_contact']) . '">', '</a>'));
}
$username = request_var('username', '', true);
diff --git a/phpBB/language/en/ucp.php b/phpBB/language/en/ucp.php
index ce93c7bcf8..3864414af0 100644
--- a/phpBB/language/en/ucp.php
+++ b/phpBB/language/en/ucp.php
@@ -521,7 +521,7 @@ $lang = array_merge($lang, array(
'UCP_USERGROUPS_MEMBER' => 'Edit memberships',
'UCP_USERGROUPS_MANAGE' => 'Manage groups',
- 'UCP_FORGOT_PASSWORD_DISABLE' => 'The administrator has disabled the password reset ability. If you need help accessing your account, please contact the %sBoard Administrator%s',
+ 'UCP_FORGOT_PASSWORD_DISABLED' => 'The administrator has disabled the password reset ability. If you need help accessing your account, please contact the %sBoard Administrator%s',
'UCP_REGISTER_DISABLE' => 'Creating a new account is currently not possible.',
'UCP_REMIND' => 'Send password',
'UCP_RESEND' => 'Send activation email',