summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--system/helpers/typography_helper.php2
-rw-r--r--user_guide/changelog.html1
2 files changed, 2 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';
diff --git a/user_guide/changelog.html b/user_guide/changelog.html
index 9fdd74e71..07a605e4e 100644
--- a/user_guide/changelog.html
+++ b/user_guide/changelog.html
@@ -170,6 +170,7 @@ Change Log
<li>Fixed a bug in Pagination to scan for non-positive num_links.</li>
<li>Fixed a bug in the typography helper causing extraneous paragraph tags when string contains tags.</li>
<li>Fixed a bug in the Encryption Library to support modes other than MCRYPT_MODE_ECB</li>
+ <li>Fixed a bug in the Typography Helper where unordered list was listed &quot;un&quot; (#3267)</li>
<li>Fixed a bug (#3175) preventing certain libraries from working properly when autoloaded in PHP 4</li>
<li>Fixed an example of comma-separated emails in the email library documentation.</li>
<li>Fixed an example in the Calendar library for Showing Next/Previous Month Links.</li>