diff options
author | 2017-07-16 11:17:36 +0200 | |
---|---|---|
committer | 2017-07-16 11:17:36 +0200 | |
commit | 4ed45c4e1276335ff6581a4db58b0173c9905528 (patch) | |
tree | eb0aa1ae403aaadfc876dfe76e97ffb716434e51 /phpBB/language | |
parent | Merge pull request #29 from phpbb/ticket/security-181 (diff) | |
parent | [ticket/security-203] Allow more characters for branch names (diff) | |
download | phpbb-4ed45c4e1276335ff6581a4db58b0173c9905528.tar.gz phpbb-4ed45c4e1276335ff6581a4db58b0173c9905528.tar.bz2 phpbb-4ed45c4e1276335ff6581a4db58b0173c9905528.zip |
Merge pull request #32 from phpbb/ticket/security-203
[ticket/security-203] Fully validate version check data in version helper
Diffstat (limited to 'phpBB/language')
-rw-r--r-- | phpBB/language/en/acp/common.php | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/phpBB/language/en/acp/common.php b/phpBB/language/en/acp/common.php index 562b446f8a..f5591e7b1e 100644 --- a/phpBB/language/en/acp/common.php +++ b/phpBB/language/en/acp/common.php @@ -417,11 +417,14 @@ $lang = array_merge($lang, array( 'UPLOAD_DIR_SIZE' => 'Size of posted attachments', 'USERS_PER_DAY' => 'Users per day', - 'VALUE' => 'Value', - 'VERSIONCHECK_FAIL' => 'Failed to obtain latest version information.', - 'VERSIONCHECK_FORCE_UPDATE' => 'Re-Check version', - 'VIEW_ADMIN_LOG' => 'View administrator log', - 'VIEW_INACTIVE_USERS' => 'View inactive users', + 'VALUE' => 'Value', + 'VERSIONCHECK_FAIL' => 'Failed to obtain latest version information.', + 'VERSIONCHECK_FORCE_UPDATE' => 'Re-Check version', + 'VERSIONCHECK_INVALID_ENTRY' => 'Latest version information contains an unsupported entry.', + 'VERSIONCHECK_INVALID_URL' => 'Latest version information contains invalid URL.', + 'VERSIONCHECK_INVALID_VERSION' => 'Latest version information contains an invalid version.', + 'VIEW_ADMIN_LOG' => 'View administrator log', + 'VIEW_INACTIVE_USERS' => 'View inactive users', 'WELCOME_PHPBB' => 'Welcome to phpBB', 'WRITABLE_CONFIG' => 'Your config file (config.php) is currently world-writable. We strongly encourage you to change the permissions to 640 or at least to 644 (for example: <a href="http://en.wikipedia.org/wiki/Chmod" rel="external">chmod</a> 640 config.php).', |