summaryrefslogtreecommitdiffstats
path: root/system/libraries
diff options
context:
space:
mode:
authorRick Ellis <rick.ellis@ellislab.com>2007-04-27 23:20:38 +0200
committerRick Ellis <rick.ellis@ellislab.com>2007-04-27 23:20:38 +0200
commita1b05a1c6505fe2afce28c0268a51582c655a190 (patch)
tree2e5117e173e052296f855cbb962e4ab6141842ac /system/libraries
parentdb9ad31f477db4a7d855964a2f1f4aee01eaee0d (diff)
Diffstat (limited to 'system/libraries')
-rw-r--r--system/libraries/Validation.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Validation.php b/system/libraries/Validation.php
index 7ad8509a3..c28713c1b 100644
--- a/system/libraries/Validation.php
+++ b/system/libraries/Validation.php
@@ -194,7 +194,7 @@ class CI_Validation {
//Explode out the rules!
$ex = explode('|', $rules);
- // Is the field required? If not, if the field is blank we'll move on to the next text
+ // Is the field required? If not, if the field is blank we'll move on to the next test
if ( ! in_array('required', $ex, TRUE) AND strpos($rules, 'callback_') === FALSE)
{
if ( ! isset($_POST[$field]) OR $_POST[$field] == '')