diff options
Diffstat (limited to 'system/helpers/text_helper.php')
-rw-r--r-- | system/helpers/text_helper.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/helpers/text_helper.php b/system/helpers/text_helper.php index 21ab77830..df3c89e6f 100644 --- a/system/helpers/text_helper.php +++ b/system/helpers/text_helper.php @@ -226,7 +226,7 @@ if (! function_exists('word_censor')) {
function word_censor($str, $censored, $replacement = '')
{
- if ( ! is_array($censored))
+ if (! is_array($censored))
{
return $str;
}
@@ -354,7 +354,7 @@ if (! function_exists('word_wrap')) function word_wrap($str, $charlim = '76')
{
// Se the character limit
- if ( ! is_numeric($charlim))
+ if (! is_numeric($charlim))
$charlim = 76;
// Reduce multiple spaces
|