From 69c56441df49280cb79c67b80ecafa4f52e4453f Mon Sep 17 00:00:00 2001 From: Andrey Andreev Date: Tue, 20 May 2014 09:58:08 +0300 Subject: [ci skip] Fix error notices in FV when trying to lookup error msgs for closures --- system/libraries/Form_validation.php | 32 ++++++++++++++++++-------------- 1 file changed, 18 insertions(+), 14 deletions(-) diff --git a/system/libraries/Form_validation.php b/system/libraries/Form_validation.php index 2f072343d..dc5d17fb3 100644 --- a/system/libraries/Form_validation.php +++ b/system/libraries/Form_validation.php @@ -791,23 +791,27 @@ class CI_Form_validation { // Did the rule test negatively? If so, grab the error. if ($result === FALSE) { - // Check if a custom message is defined - if (isset($this->_field_data[$row['field']]['errors'][$rule])) - { - $line = $this->_field_data[$row['field']]['errors'][$rule]; - } - elseif ( ! isset($this->_error_messages[$rule])) + // Callable rules don't have named error messages + if ( ! is_callable($rule)) { - if (FALSE === ($line = $this->CI->lang->line('form_validation_'.$rule)) - // DEPRECATED support for non-prefixed keys - && FALSE === ($line = $this->CI->lang->line($rule, FALSE))) + // Check if a custom message is defined + if (isset($this->_field_data[$row['field']]['errors'][$rule])) { - $line = 'Unable to access an error message corresponding to your field name.'; + $line = $this->_field_data[$row['field']]['errors'][$rule]; + } + elseif ( ! isset($this->_error_messages[$rule])) + { + if (FALSE === ($line = $this->CI->lang->line('form_validation_'.$rule)) + // 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.'; + } + } + else + { + $line = $this->_error_messages[$rule]; } - } - else - { - $line = $this->_error_messages[$rule]; } // Is the parameter we are inserting into the error message the name -- cgit v1.2.3-24-g4f1b