summaryrefslogtreecommitdiffstats
path: root/system/helpers/cookie_helper.php
diff options
context:
space:
mode:
authorDerek Jones <derek.jones@ellislab.com>2009-02-10 21:16:57 +0100
committerDerek Jones <derek.jones@ellislab.com>2009-02-10 21:16:57 +0100
commita04cfa77a3b113e5a9d858466bc9ae9f674081fb (patch)
tree89b774bb685248107fd60951a5aa28b18decc75d /system/helpers/cookie_helper.php
parent2c8dc585dd4134e71a7356f99b6a0dac12bf9d1a (diff)
didn't mean to completely remove the CI superobject from get_cookie...
Diffstat (limited to 'system/helpers/cookie_helper.php')
-rw-r--r--system/helpers/cookie_helper.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/system/helpers/cookie_helper.php b/system/helpers/cookie_helper.php
index 77f86e489..8d892a5d6 100644
--- a/system/helpers/cookie_helper.php
+++ b/system/helpers/cookie_helper.php
@@ -107,6 +107,8 @@ if ( ! function_exists('get_cookie'))
{
function get_cookie($index = '', $xss_clean = FALSE)
{
+ $CI =& get_instance();
+
$prefix = '';
if ( ! isset($_COOKIE[$index]) && config_item('cookie_prefix') != '')