diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-05-02 12:09:57 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-05-02 12:09:57 +0200 |
commit | 963c96c5507ceb8b5c3de50d0ab959d21dcc8cd1 (patch) | |
tree | 71dca1feeb4167ef44a7a76ebc379ec52973fc0b /system/helpers | |
parent | f5f660e68ba334e68f1d81140664b79f895d1c61 (diff) |
Fix a wrong variable name
Diffstat (limited to 'system/helpers')
-rw-r--r-- | system/helpers/text_helper.php | 2 |
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; } |