diff options
author | Timothy Warren <tim@timshomepage.net> | 2012-04-27 15:58:11 +0200 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2012-04-27 15:58:11 +0200 |
commit | 7183ff91112e540315dffdef2cea0d6d491cdc2e (patch) | |
tree | 71119fbf7069a35abf1e1ad8eaa6e49ba16afecb /system/core/Input.php | |
parent | b82bc3a016ce01dfeb993da5918853625a40af86 (diff) | |
parent | 8a6d16c62602d249d2e66356faf5e2f4b8470c9e (diff) |
Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into library-cleanup
Diffstat (limited to 'system/core/Input.php')
-rwxr-xr-x | system/core/Input.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/system/core/Input.php b/system/core/Input.php index fc2a550bc..7594a2e45 100755 --- a/system/core/Input.php +++ b/system/core/Input.php @@ -226,6 +226,7 @@ class CI_Input { */ public function cookie($index = '', $xss_clean = FALSE) { + $index = config_item('cookie_prefix').$index; return $this->_fetch_from_array($_COOKIE, $index, $xss_clean); } |