diff options
author | Ahmedul Haque Abid <a_h_abid@hotmail.com> | 2014-01-09 10:58:51 +0100 |
---|---|---|
committer | Ahmedul Haque Abid <a_h_abid@hotmail.com> | 2014-01-09 10:58:51 +0100 |
commit | e9b0ccc3a686772b5b26c5b6d0ae2f35d48fb4c3 (patch) | |
tree | dbda70527fa5ff8f0a13dfe94d3c63298b3bdccd /system/libraries | |
parent | 34cf49043465e41ff776443edfd0e6888277bd14 (diff) |
Added the missing "is" in the comment
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 9efa9f33c..2bebd2f9a 100644 --- a/system/libraries/Form_validation.php +++ b/system/libraries/Form_validation.php @@ -608,7 +608,7 @@ class CI_Form_validation { // Set the message type $type = in_array('required', $rules) ? 'required' : 'isset'; - // Check if a custom message defined + // Check if a custom message is defined if (isset($this->_field_data[$row['field']]['error_msg'][$type])) { $line = $this->_field_data[$row['field']]['error_msg'][$type]; |