Hello,
I`m working on my first app with CI, and got a problem with using arrays in forms and validating it with form_validation - I`m doing everything just how user guide tells to do, so I believe it’s a bug.
The problem is that when I have an array input like
<input type="text" name="sth[]" value="set_value('sth[]')">
and use a rule like
$this->form_validation->set_rules('sth[]', 'Something', 'required');
whenever I have to “re-populate” the form after submitting any value to such field it’s value is “Array”, when it should be the value I submitted there.
Problem existed in previous 1.7.1 version, and still exists in latest 1.7.2
I hope it’s me who’s doing something wrong, it’s quite urgent for me, so big thanks for any support.
