From 2c8dc585dd4134e71a7356f99b6a0dac12bf9d1a Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Tue, 10 Feb 2009 20:15:49 +0000 Subject: added global cookie prefix to get_cookie() unless the cookie exists as-requested --- system/helpers/cookie_helper.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'system/helpers') diff --git a/system/helpers/cookie_helper.php b/system/helpers/cookie_helper.php index d906882ae..77f86e489 100644 --- a/system/helpers/cookie_helper.php +++ b/system/helpers/cookie_helper.php @@ -107,8 +107,14 @@ if ( ! function_exists('get_cookie')) { function get_cookie($index = '', $xss_clean = FALSE) { - $CI =& get_instance(); - return $CI->input->cookie($index, $xss_clean); + $prefix = ''; + + if ( ! isset($_COOKIE[$index]) && config_item('cookie_prefix') != '') + { + $prefix = config_item('cookie_prefix'); + } + + return $CI->input->cookie($prefix.$index, $xss_clean); } } -- cgit v1.2.3-24-g4f1b