diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-04-30 17:57:37 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-04-30 17:57:37 +0200 |
commit | e57411502933afad6fca682efb437db05998e532 (patch) | |
tree | 857efae0b59bbabc4595dae90e107f33e9bad994 /system | |
parent | b3d7443021c948134f14dfa83afda39f0f51fc80 (diff) |
Reverted recent commit, cookie_prefix was breaking things.
Diffstat (limited to 'system')
-rwxr-xr-x | system/core/Input.php | 1 |
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); } |