diff --git a/phpBB/language/en/help_bbcode.php b/phpBB/language/en/help_bbcode.php
index 7e0e4669f2..fb1caebd28 100644
--- a/phpBB/language/en/help_bbcode.php
+++ b/phpBB/language/en/help_bbcode.php
@@ -40,7 +40,7 @@ $help = array(
),
array(
0 => 'How to create bold, italic and underlined text',
- 1 => 'BBCode includes tags to allow you to quickly change the basic style of your text. This is achieved in the following ways:
- To make a piece of text bold enclose it in [b][/b], eg.
[b]Hello[/b]
will become Hello - For underlining use [u][/u], for example:
[u]Good Morning[/u]
becomes Good Morning - To italicise text use [i][/i], eg.
This is [i]Great![/i]
would give This is Great!
'
+ 1 => 'BBCode includes tags to allow you to quickly change the basic style of your text. This is achieved in the following ways: - To make a piece of text bold enclose it in [b][/b], eg.
[b]Hello[/b]
will become Hello - For underlining use [u][/u], for example:
[u]Good Morning[/u]
becomes Good Morning - To italicise text use [i][/i], eg.
This is [i]Great![/i]
would give This is Great!
'
),
array(
0 => 'How to change the text colour or size',
@@ -72,7 +72,7 @@ $help = array(
),
array(
0 => 'Creating an Ordered list',
- 1 => 'The second type of list, an ordered list gives you control over what is output before each item. To create an ordered list you use [list=1][/list] to create a numbered list or alternatively [list=a][/list] for an alphabetical list. As with the unordered list items are specified using [*]. For example:
[list=1]
[*]Go to the shops
[*]Buy a new computer
[*]Swear at computer when it crashes
[/list]
will generate the following:- Go to the shops
- Buy a new computer
- Swear at computer when it crashes
Whereas for an alphabetical list you would use:
[list=a]
[*]The first possible answer
[*]The second possible answer
[*]The third possible answer
[/list]
giving- The first possible answer
- The second possible answer
- The third possible answer
'
+ 1 => 'The second type of list, an ordered list gives you control over what is output before each item. To create an ordered list you use [list=1][/list] to create a numbered list or alternatively [list=a][/list] for an alphabetical list. As with the unordered list items are specified using [*]. For example:
[list=1]
[*]Go to the shops
[*]Buy a new computer
[*]Swear at computer when it crashes
[/list]
will generate the following:- Go to the shops
- Buy a new computer
- Swear at computer when it crashes
Whereas for an alphabetical list you would use:
[list=a]
[*]The first possible answer
[*]The second possible answer
[*]The third possible answer
[/list]
giving- The first possible answer
- The second possible answer
- The third possible answer
'
),
array(
0 => '--',
@@ -80,7 +80,7 @@ $help = array(
),
array(
0 => 'Linking to another site',
- 1 => 'phpBB BBCode supports a number of ways of creating URIs, Uniform Resource Indicators better known as URLs.- The first of these uses the [url=][/url] tag, whatever you type after the = sign will cause the contents of that tag to act as a URL. For example to link to phpBB.com you could use:
[url=http://www.phpbb.com/]Visit phpBB![/url]
This would generate the following link, Visit phpBB! Please notice that the link opens in the same window or a new window depending on the users browser preferences. - If you want the URL itself displayed as the link you can do this by simply using:
[url]http://www.phpbb.com/[/url]
This would generate the following link, http://www.phpbb.com/ - Additionally phpBB features something called Magic Links, this will turn any syntactically correct URL into a link without you needing to specify any tags or even the leading http://. For example typing www.phpbb.com into your message will automatically lead to www.phpbb.com being output when you view the message.
- The same thing applies equally to e-mail addresses, you can either specify an address explicitly for example:
[email]no.one@domain.adr[/email]
which will output no.one@domain.adr or you can just type no.one@domain.adr into your message and it will be automatically converted when you view.
As with all the BBCode tags you can wrap URLs around any of the other tags such as [img][/img] (see next entry), [b][/b], etc. As with the formatting tags it is up to you to ensure the correct open and close order is following, for example:
[url=http://www.google.com/][img]http://www.google.com/intl/en_ALL/images/logo.gif[/url][/img]
is not correct which may lead to your post being deleted so take care.'
+ 1 => 'phpBB BBCode supports a number of ways of creating URIs, Uniform Resource Indicators better known as URLs.- The first of these uses the [url=][/url] tag, whatever you type after the = sign will cause the contents of that tag to act as a URL. For example to link to phpBB.com you could use:
[url=http://www.phpbb.com/]Visit phpBB![/url]
This would generate the following link, Visit phpBB! Please notice that the link opens in the same window or a new window depending on the users browser preferences. - If you want the URL itself displayed as the link you can do this by simply using:
[url]http://www.phpbb.com/[/url]
This would generate the following link, http://www.phpbb.com/ - Additionally phpBB features something called Magic Links, this will turn any syntactically correct URL into a link without you needing to specify any tags or even the leading http://. For example typing www.phpbb.com into your message will automatically lead to www.phpbb.com being output when you view the message.
- The same thing applies equally to e-mail addresses, you can either specify an address explicitly for example:
[email]no.one@domain.adr[/email]
which will output no.one@domain.adr or you can just type no.one@domain.adr into your message and it will be automatically converted when you view.
As with all the BBCode tags you can wrap URLs around any of the other tags such as [img][/img] (see next entry), [b][/b], etc. As with the formatting tags it is up to you to ensure the correct open and close order is following, for example:
[url=http://www.google.com/][img]http://www.google.com/intl/en_ALL/images/logo.gif[/url][/img]
is not correct which may lead to your post being deleted so take care.'
),
array(
0 => '--',