From 97707cc6e51d77ded02deba6d3d8d2c5867cab83 Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Thu, 5 Feb 2009 16:54:58 +0000 Subject: replaced $this->config-> with $CFG-> in ip_address() --- system/libraries/Input.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'system') diff --git a/system/libraries/Input.php b/system/libraries/Input.php index 6491d1791..0679d0188 100644 --- a/system/libraries/Input.php +++ b/system/libraries/Input.php @@ -347,9 +347,11 @@ class CI_Input { return $this->ip_address; } - if ($this->config->item('proxy_ips') != '' && $this->server('HTTP_X_FORWARDED_FOR') && $this->server('REMOTE_ADDR')) + $CFG =& load_class('Config'); + + if ($CFG->item('proxy_ips') != '' && $this->server('HTTP_X_FORWARDED_FOR') && $this->server('REMOTE_ADDR')) { - $proxies = preg_split('/[\s,]/', $this->config->item('proxy_ips'), -1, PREG_SPLIT_NO_EMPTY); + $proxies = preg_split('/[\s,]/', $CFG->item('proxy_ips'), -1, PREG_SPLIT_NO_EMPTY); $proxies = is_array($proxies) ? $proxies : array($proxies); $this->ip_address = in_array($_SERVER['REMOTE_ADDR'], $proxies) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR']; -- cgit v1.2.3-24-g4f1b