summaryrefslogtreecommitdiffstats
path: root/system/helpers/typography_helper.php
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2008-01-19 16:41:28 +0100
committerDerek Allard <derek.allard@ellislab.com>2008-01-19 16:41:28 +0100
commitbab7ed9f660ef16f48cd9cf299e6e440b3f1d75c (patch)
treea299acc7567192001842158f72566e2ec21ec08b /system/helpers/typography_helper.php
parent33322a381f9cd9eae455d1cc28f384e13d269506 (diff)
Fixed a bug in the Typography Helper where unordered list was listed "un" (#3267)
Diffstat (limited to 'system/helpers/typography_helper.php')
-rw-r--r--system/helpers/typography_helper.php2
1 files changed, 1 insertions, 1 deletions
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 <p> 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 <p> and <br /> tags within them.
var $skip_elements = 'pre|ol|ul';