diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-05-02 21:30:26 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-05-02 21:30:26 +0200 |
commit | 41d31cc15eef0194e797775e9d33bcf6d64eaf57 (patch) | |
tree | 4a899987222d60a8362a1d3942443e1ba51f63da /system/libraries | |
parent | 5ebd7c408b4ff99cdb41184656bc26a088765923 (diff) | |
parent | 2d51c08027382cc10692188ccb68789daf2f2083 (diff) |
Merge pull request #1313 from petsagouris/fix-form-validation-typo
Fixing a typo in Form Validation
Diffstat (limited to 'system/libraries')
-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)); } // -------------------------------------------------------------------- |