From ca6e4d880df06b50d2d1470d107945f9bb06d2ef Mon Sep 17 00:00:00 2001 From: Roland Graf Date: Sat, 8 Feb 2014 20:09:43 +0100 Subject: [PATCH] Editing bbcode - choice heading --- e107_core/shortcodes/batch/bbcode_shortcodes.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/e107_core/shortcodes/batch/bbcode_shortcodes.php b/e107_core/shortcodes/batch/bbcode_shortcodes.php index 1af204852..1b3b1bb68 100644 --- a/e107_core/shortcodes/batch/bbcode_shortcodes.php +++ b/e107_core/shortcodes/batch/bbcode_shortcodes.php @@ -31,12 +31,11 @@ class bbcode_shortcodes extends e_shortcode { $formats = array( 0 => array('[p][/p]','Paragraph'), - 1 => array('[h=2][/h]','Heading 1'), - 2 => array('[h=2][/h]','Heading 2'), + 2 => array('[h=2][/h]','Heading 2'), //Removed choice H1 3 => array('[h=3][/h]','Heading 3'), 4 => array('[h=4][/h]','Heading 4'), 5 => array('[h=5][/h]','Heading 5'), - 6 => array('[h=5][/h]','Heading 6'), + 6 => array('[h=6][/h]','Heading 6'), // Erase [h=5] - Write [h=6] 7 => array('[block][/block]','Block'), 8 => array('[blockquote][/blockquote]', 'Quote'), 9 => array('[code][/code]', 'Code Block'),