From 7327499064ae165468c7440f8571c3e570b58a0b Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Mon, 5 May 2008 16:39:18 +0000 Subject: Added get_dir_file_info(), get_file_info(), and get_mime_by_extension() to the File Helper. Changed ( ! condition) into (! condition) within the code --- system/helpers/smiley_helper.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'system/helpers/smiley_helper.php') diff --git a/system/helpers/smiley_helper.php b/system/helpers/smiley_helper.php index 25962eb54..81c6b9199 100644 --- a/system/helpers/smiley_helper.php +++ b/system/helpers/smiley_helper.php @@ -67,7 +67,7 @@ if (! function_exists('get_clickable_smileys')) { function get_clickable_smileys($image_url = '', $smileys = NULL) { - if ( ! is_array($smileys)) + if (! is_array($smileys)) { if (FALSE === ($smileys = _get_smiley_array())) { @@ -120,7 +120,7 @@ if (! function_exists('parse_smileys')) return $str; } - if ( ! is_array($smileys)) + if (! is_array($smileys)) { if (FALSE === ($smileys = _get_smiley_array())) { @@ -154,14 +154,14 @@ if (! function_exists('_get_smiley_array')) { function _get_smiley_array() { - if ( ! file_exists(APPPATH.'config/smileys'.EXT)) + if (! file_exists(APPPATH.'config/smileys'.EXT)) { return FALSE; } include(APPPATH.'config/smileys'.EXT); - if ( ! isset($smileys) OR ! is_array($smileys)) + if (! isset($smileys) OR ! is_array($smileys)) { return FALSE; } -- cgit v1.2.3-24-g4f1b