summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2016-02-09 22:46:25 +0100
committerAndrey Andreev <narf@devilix.net>2016-02-09 22:47:05 +0100
commit24adbfc5e163de9da72f59e36be6c0ac02bf10c2 (patch)
tree994855899962731cf0241a08e2bcf16c2474b486
parent5788d005a0f508ac59b436d3d6d6e6a496864cc4 (diff)
Rename back a variable changed by the last PR merge
Because.
-rw-r--r--system/libraries/Form_validation.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/system/libraries/Form_validation.php b/system/libraries/Form_validation.php
index 24b2d1fc4..296ddb92a 100644
--- a/system/libraries/Form_validation.php
+++ b/system/libraries/Form_validation.php
@@ -855,14 +855,14 @@ class CI_Form_validation {
{
return $this->_error_messages[$rule];
}
- elseif (FALSE !== ($tmp = $this->CI->lang->line('form_validation_'.$rule)))
+ elseif (FALSE !== ($line = $this->CI->lang->line('form_validation_'.$rule)))
{
- return $tmp;
+ return $line;
}
// DEPRECATED support for non-prefixed keys, lang file again
- elseif (FALSE !== ($tmp = $this->CI->lang->line($rule, FALSE)))
+ elseif (FALSE !== ($line = $this->CI->lang->line($rule, FALSE)))
{
- return $tmp;
+ return $line;
}
return $this->CI->lang->line('form_validation_error_message_not_set').'('.$rule.')';