summaryrefslogtreecommitdiffstats
path: root/system/helpers/text_helper.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-05-02 12:09:57 +0200
committerAndrey Andreev <narf@bofh.bg>2012-05-02 12:09:57 +0200
commit963c96c5507ceb8b5c3de50d0ab959d21dcc8cd1 (patch)
tree71dca1feeb4167ef44a7a76ebc379ec52973fc0b /system/helpers/text_helper.php
parentf5f660e68ba334e68f1d81140664b79f895d1c61 (diff)
Fix a wrong variable name
Diffstat (limited to 'system/helpers/text_helper.php')
-rw-r--r--system/helpers/text_helper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/text_helper.php b/system/helpers/text_helper.php
index daf31c3d6..c1c0eb947 100644
--- a/system/helpers/text_helper.php
+++ b/system/helpers/text_helper.php
@@ -377,7 +377,7 @@ if ( ! function_exists('convert_accented_characters'))
include(APPPATH.'config/foreign_chars.php');
}
- if ( ! isset($foreign_characters) OR ! is_array($foreign_chars))
+ if ( ! isset($foreign_characters) OR ! is_array($foreign_characters))
{
return $str;
}