summaryrefslogtreecommitdiffstats
path: root/system/core/Input.php
diff options
context:
space:
mode:
authorPhil Sturgeon <email@philsturgeon.co.uk>2012-04-30 17:57:37 +0200
committerPhil Sturgeon <email@philsturgeon.co.uk>2012-04-30 17:57:37 +0200
commite57411502933afad6fca682efb437db05998e532 (patch)
tree857efae0b59bbabc4595dae90e107f33e9bad994 /system/core/Input.php
parentb3d7443021c948134f14dfa83afda39f0f51fc80 (diff)
Reverted recent commit, cookie_prefix was breaking things.
Diffstat (limited to 'system/core/Input.php')
-rwxr-xr-xsystem/core/Input.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/system/core/Input.php b/system/core/Input.php
index 7594a2e45..fc2a550bc 100755
--- a/system/core/Input.php
+++ b/system/core/Input.php
@@ -226,7 +226,6 @@ 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);
}