diff options
Diffstat (limited to 'system')
-rw-r--r-- | system/helpers/typography_helper.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/system/helpers/typography_helper.php b/system/helpers/typography_helper.php index ce628115a..f0dd6fd90 100644 --- a/system/helpers/typography_helper.php +++ b/system/helpers/typography_helper.php @@ -69,16 +69,21 @@ if ( ! function_exists('nl2br_except_pre')) *
* @access public
* @param string
+ * @param bool whether to allow javascript event handlers
+ * @param bool whether to reduce multiple instances of double newlines to two
* @return string
*/
if ( ! function_exists('auto_typography'))
{
- function auto_typography($str)
+ function auto_typography($str, $allow_event_handlers = FALSE, $reduce_empty_lines = FALSE)
{
$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->convert($str);
}
}
|