From eb5498dd55fa3d3c5005656b70c9f4cb0630f34c Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 18 Jun 2009 18:12:28 +0000 Subject: Fix bug #31405 - Ability to define column split in FAQ/BBCode help (Bug #31405) Authorised by: acydburn git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9623 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/language/en/help_bbcode.php | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'phpBB/language/en/help_bbcode.php') diff --git a/phpBB/language/en/help_bbcode.php b/phpBB/language/en/help_bbcode.php index ed6fea96d3..df5f950e3e 100644 --- a/phpBB/language/en/help_bbcode.php +++ b/phpBB/language/en/help_bbcode.php @@ -78,6 +78,11 @@ $help = 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:
  1. Go to the shops
  2. Buy a new computer
  3. 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
  1. The first possible answer
  2. The second possible answer
  3. The third possible answer
' ), + // This block will switch the FAQ-Questions to the second template column + array( + 0 => '--', + 1 => '--' + ), array( 0 => '--', 1 => 'Creating Links' -- cgit v1.2.1