diff options
author | Derek Allard <derek.allard@ellislab.com> | 2007-09-18 21:18:53 +0200 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2007-09-18 21:18:53 +0200 |
commit | 53a9c3f3fdc480a2392f256875d97d41b9ce2625 (patch) | |
tree | 20d3de3519e3b3ca0e36f70ee793b43c7e7c12fc /system/libraries | |
parent | 2005ffe2fb3cff05fd5e8cd7e73a4c7053328574 (diff) |
Fixed a bug in Validation where valid_ip() wasn't called properly
Diffstat (limited to 'system/libraries')
-rw-r--r-- | system/libraries/Validation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Validation.php b/system/libraries/Validation.php index 10773b213..3dfc7be03 100644 --- a/system/libraries/Validation.php +++ b/system/libraries/Validation.php @@ -490,7 +490,7 @@ class CI_Validation { */
function valid_ip($ip)
{
- return $this->CI->valid_ip($ip);
+ return $this->CI->input->valid_ip($ip);
}
// --------------------------------------------------------------------
|