diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-05-23 19:37:24 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-05-23 19:42:04 +0200 |
commit | 55a6ddb0c7bab1149bb1ddfa3a1aff46612c91d4 (patch) | |
tree | 5840dd5451c53c5fc01509288c4484d5189a66a1 /system/core/Input.php | |
parent | 37294771ef8cdb0c2d4834783ad79a6bdbc96d77 (diff) |
Input, Session and Cookie get's will return NULL.
Read more about this change here:
http://codeigniter.com/forums/viewthread/215833
Diffstat (limited to 'system/core/Input.php')
-rwxr-xr-x | system/core/Input.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/core/Input.php b/system/core/Input.php index e916ac66d..97be9e690 100755 --- a/system/core/Input.php +++ b/system/core/Input.php @@ -135,7 +135,7 @@ class CI_Input { { if ( ! isset($array[$index])) { - return FALSE; + return NULL; } if ($xss_clean === TRUE) @@ -659,7 +659,7 @@ class CI_Input { if ( ! isset($this->headers[$index])) { - return FALSE; + return NULL; } return ($xss_clean === TRUE) |