diff options
author | George Petsagourakis <petsagouris@gmail.com> | 2012-05-02 19:29:04 +0200 |
---|---|---|
committer | George Petsagourakis <petsagouris@gmail.com> | 2012-05-02 19:29:04 +0200 |
commit | 2d51c08027382cc10692188ccb68789daf2f2083 (patch) | |
tree | b03243b63a8ca504a94ee2df0a0fc13d81d7ab79 | |
parent | b3d7443021c948134f14dfa83afda39f0f51fc80 (diff) |
Fixing some typos.
-rw-r--r-- | system/libraries/Form_validation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Form_validation.php b/system/libraries/Form_validation.php index a52cad5ff..5547c6a69 100644 --- a/system/libraries/Form_validation.php +++ b/system/libraries/Form_validation.php @@ -1005,7 +1005,7 @@ class CI_Form_validation { return (MB_ENABLED === TRUE) ? ($val <= mb_strlen($str)) - : ($val <= strlen(str)); + : ($val <= strlen($str)); } // -------------------------------------------------------------------- |