aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/language/en/acp/posting.php
diff options
context:
space:
mode:
authorHenry Sudhof <kellanved@phpbb.com>2010-02-21 11:33:29 +0000
committerHenry Sudhof <kellanved@phpbb.com>2010-02-21 11:33:29 +0000
commit22621e043963dca078580eaf61b45c5022ca79e1 (patch)
treeeb18fb876a5afc0745967f29aa83c923ab524b6a /phpBB/language/en/acp/posting.php
parent6b99b85c8f2f366d8e5e3e2855d77b0832d141d7 (diff)
downloadforums-22621e043963dca078580eaf61b45c5022ca79e1.tar
forums-22621e043963dca078580eaf61b45c5022ca79e1.tar.gz
forums-22621e043963dca078580eaf61b45c5022ca79e1.tar.bz2
forums-22621e043963dca078580eaf61b45c5022ca79e1.tar.xz
forums-22621e043963dca078580eaf61b45c5022ca79e1.zip
Enter stage left: the INTTEXT token
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10516 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/language/en/acp/posting.php')
-rw-r--r--phpBB/language/en/acp/posting.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/language/en/acp/posting.php b/phpBB/language/en/acp/posting.php
index 74cd29ffee..443f4a3ea2 100644
--- a/phpBB/language/en/acp/posting.php
+++ b/phpBB/language/en/acp/posting.php
@@ -41,7 +41,7 @@ $lang = array_merge($lang, array(
'ACP_BBCODES_EXPLAIN' => 'BBCode is a special implementation of HTML offering greater control over what and how something is displayed. From this page you can add, remove and edit custom BBCodes.',
'ADD_BBCODE' => 'Add a new BBCode',
- 'BBCODE_DANGER' => 'The BBCode you are trying to add seems to use a {TEXT} token inside a HTML attribute. This is a possible XSS security issue. Try using the more restrictive {SIMPLETEXT} type instead. Only proceed if you understand the risks involved and you consider the use of {TEXT} absolutely unavoidable.',
+ 'BBCODE_DANGER' => 'The BBCode you are trying to add seems to use a {TEXT} token inside a HTML attribute. This is a possible XSS security issue. Try using the more restrictive {SIMPLETEXT} or {INTTEXT} types instead. Only proceed if you understand the risks involved and you consider the use of {TEXT} absolutely unavoidable.',
'BBCODE_DANGER_PROCEED' => 'Proceed', //'I understand the risk',
'BBCODE_ADDED' => 'BBCode added successfully.',
@@ -76,8 +76,9 @@ $lang = array_merge($lang, array(
'TOO_MANY_BBCODES' => 'You cannot create any more BBCodes. Please remove one or more BBCodes then try again.',
'tokens' => array(
- 'TEXT' => 'Any text, including foreign characters, numbers, etc… You should not use this token in HTML tags. Instead try to use IDENTIFIER or SIMPLETEXT.',
+ 'TEXT' => 'Any text, including foreign characters, numbers, etc… You should not use this token in HTML tags. Instead try to use IDENTIFIER, INTTEXT or SIMPLETEXT.',
'SIMPLETEXT' => 'Characters from the latin alphabet (A-Z), numbers, spaces, commas, dots, minus, plus, hyphen and underscore',
+ 'INTTEXT' => 'Unicode letter characters, numbers, spaces, commas, dots, minus, plus, hyphen, underscore and whitespaces.',
'IDENTIFIER' => 'Characters from the latin alphabet (A-Z), numbers, hyphen and underscore',
'NUMBER' => 'Any series of digits',
'EMAIL' => 'A valid e-mail address',