From bab7ed9f660ef16f48cd9cf299e6e440b3f1d75c Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Sat, 19 Jan 2008 15:41:28 +0000 Subject: Fixed a bug in the Typography Helper where unordered list was listed "un" (#3267) --- system/helpers/typography_helper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system/helpers') diff --git a/system/helpers/typography_helper.php b/system/helpers/typography_helper.php index b57ec6c2c..93a887dbe 100644 --- a/system/helpers/typography_helper.php +++ b/system/helpers/typography_helper.php @@ -88,7 +88,7 @@ function auto_typography($str) class Auto_typography { // Block level elements that should not be wrapped inside

tags - var $block_elements = 'div|blockquote|pre|code|h\d|script|ol|un'; + var $block_elements = 'div|blockquote|pre|code|h\d|script|ol|ul'; // Elements that should not have

and
tags within them. var $skip_elements = 'pre|ol|ul'; -- cgit v1.2.3-24-g4f1b