commit | 773ccc318f2769c9b7579630569b5d8ba47b114b | [log] [tgz] |
---|---|---|
author | Alex Bilbie <alex@alexbilbie.com> | Sat Jun 02 11:11:08 2012 +0100 |
committer | Alex Bilbie <alex@alexbilbie.com> | Sat Jun 02 11:11:08 2012 +0100 |
tree | 6f6f5f7a1c5043a067df9cc6c0dce670d8b26880 | |
parent | 48a2baf0e288accd206f5da5031d29076e130792 [diff] [blame] |
Replaced `==` with `===` and `!=` with `!==` in /system/helpers
diff --git a/system/helpers/language_helper.php b/system/helpers/language_helper.php index 34f0307..bd567ed 100644 --- a/system/helpers/language_helper.php +++ b/system/helpers/language_helper.php
@@ -53,7 +53,7 @@ $CI =& get_instance(); $line = $CI->lang->line($line); - if ($id != '') + if ($id !== '') { $line = '<label for="'.$id.'">'.$line.'</label>'; }