commit | 53a9c3f3fdc480a2392f256875d97d41b9ce2625 | [log] [tgz] |
---|---|---|
author | Derek Allard <derek.allard@ellislab.com> | Tue Sep 18 19:18:53 2007 +0000 |
committer | Derek Allard <derek.allard@ellislab.com> | Tue Sep 18 19:18:53 2007 +0000 |
tree | 20d3de3519e3b3ca0e36f70ee793b43c7e7c12fc | |
parent | 2005ffe2fb3cff05fd5e8cd7e73a4c7053328574 [diff] [blame] |
Fixed a bug in Validation where valid_ip() wasn't called properly
diff --git a/system/libraries/Validation.php b/system/libraries/Validation.php index 10773b2..3dfc7be 100644 --- a/system/libraries/Validation.php +++ b/system/libraries/Validation.php
@@ -490,7 +490,7 @@ */ function valid_ip($ip) { - return $this->CI->valid_ip($ip); + return $this->CI->input->valid_ip($ip); } // --------------------------------------------------------------------