diff options
author | Bo-Yi Wu <appleboy.tw@gmail.com> | 2011-09-12 09:03:44 +0200 |
---|---|---|
committer | Bo-Yi Wu <appleboy.tw@gmail.com> | 2011-09-12 09:03:44 +0200 |
commit | 013c895e7f7e9122f8d2e8c80a3ac77f190c5171 (patch) | |
tree | 9bea0d0cec0d132ba5456f81593542b4e732ca16 | |
parent | 4ddee144b3493eaceeed6ca9eb6138c881f43eac (diff) |
Update: modified return bool value on comment
-rwxr-xr-x | system/core/Input.php | 2 | ||||
-rw-r--r-- | system/libraries/Form_validation.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/system/core/Input.php b/system/core/Input.php index 2b36ea3c7..1e37b11ea 100755 --- a/system/core/Input.php +++ b/system/core/Input.php @@ -369,7 +369,7 @@ class CI_Input { * * @access public * @param string - * @return string + * @return bool */ public function valid_ip($ip) { diff --git a/system/libraries/Form_validation.php b/system/libraries/Form_validation.php index a34809e05..c78583f4f 100644 --- a/system/libraries/Form_validation.php +++ b/system/libraries/Form_validation.php @@ -1079,7 +1079,7 @@ class CI_Form_validation { * * @access public * @param string - * @return string + * @return bool */ public function valid_ip($ip) { |