summaryrefslogtreecommitdiffstats
path: root/system/core/Input.php
diff options
context:
space:
mode:
authorTimothy Warren <tim@timshomepage.net>2012-04-27 15:58:11 +0200
committerTimothy Warren <tim@timshomepage.net>2012-04-27 15:58:11 +0200
commit7183ff91112e540315dffdef2cea0d6d491cdc2e (patch)
tree71119fbf7069a35abf1e1ad8eaa6e49ba16afecb /system/core/Input.php
parentb82bc3a016ce01dfeb993da5918853625a40af86 (diff)
parent8a6d16c62602d249d2e66356faf5e2f4b8470c9e (diff)
Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into library-cleanup
Diffstat (limited to 'system/core/Input.php')
-rwxr-xr-xsystem/core/Input.php1
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);
}