aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/language/en/posting.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-08-25 15:15:53 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-08-25 15:15:53 +0000
commite7cbcfe874d663703a4f6d36974aa8eb19a59c58 (patch)
tree869419df21717eb48599fe429350636bad0da249 /phpBB/language/en/posting.php
parentd1ae8c52a4fc4ab88f34347962ac667a0365f8a9 (diff)
downloadforums-e7cbcfe874d663703a4f6d36974aa8eb19a59c58.tar
forums-e7cbcfe874d663703a4f6d36974aa8eb19a59c58.tar.gz
forums-e7cbcfe874d663703a4f6d36974aa8eb19a59c58.tar.bz2
forums-e7cbcfe874d663703a4f6d36974aa8eb19a59c58.tar.xz
forums-e7cbcfe874d663703a4f6d36974aa8eb19a59c58.zip
some fixes.
David, could you check the pass_complex expressions? They are: .* PASS_TYPE_ANY (any characters are allowed, no check) [a-zA-Z] PASS_TYPE_CASE (password must contain alphanumerics) [a-zA-Z0-9] PASS_TYPE_ALPHA (password must contain alphanumerics and numbers) [a-zA-Z\W] PASS_TYPE_SYMBOL (password must contain alphanumers, numbers and symbols) At the moment the pass complexity check is done within validate_password(), but the expressions are wrong. :) git-svn-id: file:///svn/phpbb/trunk@6317 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/language/en/posting.php')
-rw-r--r--phpBB/language/en/posting.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/language/en/posting.php b/phpBB/language/en/posting.php
index 30ed20d2f2..518b3ec672 100644
--- a/phpBB/language/en/posting.php
+++ b/phpBB/language/en/posting.php
@@ -53,7 +53,7 @@ $lang = array_merge($lang, array(
'BBCODE_S_HELP' => 'Font color: [color=red]text[/color] Tip: you can also use color=#FF0000',
'BBCODE_U_HELP' => 'Underline text: [u]text[/u] (alt+u)',
'BBCODE_W_HELP' => 'Insert URL: [url]http://url[/url] or [url=http://url]URL text[/url] (alt+w)',
- 'BBCODE_D_HELP' => 'Flash: [flash=height,width]http://url[/flash] (alt+d)',
+ 'BBCODE_D_HELP' => 'Flash: [flash=width,height]http://url[/flash] (alt+d)',
'BUMP_ERROR' => 'You cannot bump this topic so soon after the last post.',
'CANNOT_DELETE_REPLIED' => 'Sorry but you may only delete posts which have not been replied to.',