summaryrefslogtreecommitdiffstats
path: root/system/core/Input.php
diff options
context:
space:
mode:
authorPhil Sturgeon <email@philsturgeon.co.uk>2012-05-23 19:37:24 +0200
committerPhil Sturgeon <email@philsturgeon.co.uk>2012-05-23 19:42:04 +0200
commit55a6ddb0c7bab1149bb1ddfa3a1aff46612c91d4 (patch)
tree5840dd5451c53c5fc01509288c4484d5189a66a1 /system/core/Input.php
parent37294771ef8cdb0c2d4834783ad79a6bdbc96d77 (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-xsystem/core/Input.php4
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)