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/download_helper.php b/system/helpers/download_helper.php index 470b61e..9c390a7 100644 --- a/system/helpers/download_helper.php +++ b/system/helpers/download_helper.php
@@ -51,7 +51,7 @@ */ function force_download($filename = '', $data = '', $set_mime = FALSE) { - if ($filename == '' OR $data == '') + if ($filename === '' OR $data === '') { return FALSE; }