/home/desid573/public_html/ims2/system/helpers
NameSizeModeActions
array_helper.php35700644editdlrm
captcha_helper.php99710644editdlrm
cookie_helper.php39180644editdlrm
date_helper.php177480644editdlrm
directory_helper.php34020644editdlrm
download_helper.php46520644editdlrm
email_helper.php27740644editdlrm
file_helper.php122750644editdlrm
form_helper.php241380644editdlrm
html_helper.php96790644editdlrm
index.html1310644editdlrm
inflector_helper.php78440644editdlrm
language_helper.php26630644editdlrm
number_helper.php30630644editdlrm
path_helper.php29600644editdlrm
security_helper.php37790644editdlrm
smiley_helper.php69810644editdlrm
string_helper.php76260644editdlrm
text_helper.php145720644editdlrm
typography_helper.php33340644editdlrm
url_helper.php140470644editdlrm
xml_helper.php29390644editdlrm
Edit: /home/desid573/public_html/ims2/system/helpers/typography_helper.php (3334B)
load->library('typography'); return $CI->typography->nl2br_except_pre($str); } } // ------------------------------------------------------------------------ if ( ! function_exists('auto_typography')) { /** * Auto Typography Wrapper Function * * @param string $str * @param bool $reduce_linebreaks = FALSE whether to reduce multiple instances of double newlines to two * @return string */ function auto_typography($str, $reduce_linebreaks = FALSE) { $CI =& get_instance(); $CI->load->library('typography'); return $CI->typography->auto_typography($str, $reduce_linebreaks); } } // -------------------------------------------------------------------- if ( ! function_exists('entity_decode')) { /** * HTML Entities Decode * * This function is a replacement for html_entity_decode() * * @param string * @param string * @return string */ function entity_decode($str, $charset = NULL) { return get_instance()->security->entity_decode($str, $charset); } }