diff options
author | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-23 14:24:31 -0400 |
---|---|---|
committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-23 14:24:50 -0400 |
commit | 2fc4be1a31e44f30ea96914bf657e4e7b2236760 (patch) | |
tree | 1f17b0badac1888b06db0943e8417be202aad7fb | |
parent | 32678f63ed04a8770720da4d94d01648dc595e82 (diff) | |
download | forums-2fc4be1a31e44f30ea96914bf657e4e7b2236760.tar forums-2fc4be1a31e44f30ea96914bf657e4e7b2236760.tar.gz forums-2fc4be1a31e44f30ea96914bf657e4e7b2236760.tar.bz2 forums-2fc4be1a31e44f30ea96914bf657e4e7b2236760.tar.xz forums-2fc4be1a31e44f30ea96914bf657e4e7b2236760.zip |
[feature/oauth] Fix language bug with new ACP OAuth template
PHPBB3-11673
-rw-r--r-- | phpBB/phpbb/auth/provider/oauth/oauth.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/auth/provider/oauth/oauth.php b/phpBB/phpbb/auth/provider/oauth/oauth.php index 6ad0293e8e..a94e6041d9 100644 --- a/phpBB/phpbb/auth/provider/oauth/oauth.php +++ b/phpBB/phpbb/auth/provider/oauth/oauth.php @@ -272,7 +272,7 @@ class phpbb_auth_provider_oauth extends phpbb_auth_provider_base { $actual_name = str_replace('auth.provider.oauth.service.', '', $service_name); $ret['TEMPLATE_VARS'][$actual_name] = array( - 'ACTUAL_NAME' => 'L_AUTH_PROVIDER_OAUTH_SERVICE_' . strtoupper($actual_name), + 'ACTUAL_NAME' => $this->user->lang['AUTH_PROVIDER_OAUTH_SERVICE_' . strtoupper($actual_name)], 'KEY' => $new_config['auth_oauth_' . $actual_name . '_key'], 'NAME' => $actual_name, 'SECRET' => $new_config['auth_oauth_' . $actual_name . '_secret'], |