Show the name of the field that doesn't have error message set.
diff --git a/system/libraries/Form_validation.php b/system/libraries/Form_validation.php
index d9d92f0..82ac342 100644
--- a/system/libraries/Form_validation.php
+++ b/system/libraries/Form_validation.php
@@ -831,7 +831,7 @@
// DEPRECATED support for non-prefixed keys
&& FALSE === ($line = $this->CI->lang->line($rule, FALSE)))
{
- $line = 'Unable to access an error message corresponding to your field name.';
+ $line = 'Unable to access an error message corresponding to your field name: '.$row['field'];
}
}
else