summaryrefslogtreecommitdiffstats
path: root/system/libraries/Validation.php
diff options
context:
space:
mode:
authorDerek Jones <derek.jones@ellislab.com>2008-05-12 18:17:58 +0200
committerDerek Jones <derek.jones@ellislab.com>2008-05-12 18:17:58 +0200
commitd56743b0d65603ebd556a05f740d5bd5da05101b (patch)
tree594e52f680b78d7c62c6e1e317d19da07e21073e /system/libraries/Validation.php
parentd36ade01b57ac39c328d9e0278b28b04fbef895e (diff)
fixed a bug that would lead to a PHP notice error of array to string conversion in prep_for_form()
http://codeigniter.com/bug_tracker/bug/4425/
Diffstat (limited to 'system/libraries/Validation.php')
-rw-r--r--system/libraries/Validation.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/system/libraries/Validation.php b/system/libraries/Validation.php
index 8796d7ffb..a0f038c02 100644
--- a/system/libraries/Validation.php
+++ b/system/libraries/Validation.php
@@ -726,6 +726,8 @@ class CI_Validation {
{
$data[$key] = $this->prep_for_form($val);
}
+
+ return $data;
}
if ($this->_safe_form_data == FALSE OR $data == '')
@@ -805,6 +807,6 @@ class CI_Validation {
}
// END Validation Class
-
-/* End of file Validation.php */
+
+/* End of file Validation.php */
/* Location: ./system/libraries/Validation.php */ \ No newline at end of file