Hey there!
Here's my problem... Validation class acts weird! I try to validate password. I have two fields. The second one is simple confirm for first. They must exactly match! http://pastie.org/1828463
In other words, validation rules do this:
1) Both fields must be submitted,
2) First field must be atleast 6 symbols long, but not longer than 255,
3) If first field is okey, then second field must be exact like first;
Here's scenario...
I submit "password" - all works.
I submit "123456" - I failed.
Why? How can I fix it?
With "I failed" I meant that $validation->run() returned 'false'.
I fix it myself. I used 'match_value' instead of 'match_field' for passwordRepeatedly!