From 3bc791f34c4b71955b4a34d123c187958f29b7c2 Mon Sep 17 00:00:00 2001 From: Rick Ellis Date: Fri, 12 Sep 2008 23:15:52 +0000 Subject: typography tweaks --- system/helpers/typography_helper.php | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'system/helpers') diff --git a/system/helpers/typography_helper.php b/system/helpers/typography_helper.php index 11acea1f7..5c5fffa80 100644 --- a/system/helpers/typography_helper.php +++ b/system/helpers/typography_helper.php @@ -60,16 +60,11 @@ if ( ! function_exists('nl2br_except_pre')) */ if ( ! function_exists('auto_typography')) { - function auto_typography($str, $allow_event_handlers = FALSE, $reduce_empty_lines = FALSE) + function auto_typography($str, $strip_js_event_handlers = TRUE, $reduce_linebreaks = FALSE) { - $CI =& get_instance(); - + $CI =& get_instance(); $CI->load->library('typography'); - - $CI->typography->allow_js_event_handlers($allow_event_handlers); - $CI->typography->reduce_empty_lines($reduce_empty_lines); - - return $CI->typography->auto_typography($str); + return $CI->typography->auto_typography($str, $strip_js_event_handlers, $reduce_linebreaks); } } -- cgit v1.2.3-24-g4f1b