There's a small bug in the PHP validation libraries, in maxLenLegacy(), which does not use the right validator :
Line 1237, replace
return Validate::minLen( $max, $opts );
with
return Validate::maxLen( $max, $opts );
Thanks! Committed and will be in 1.7.3.
Allan
It looks like you're new here. If you want to get involved, click one of these buttons!
Replies
Thanks! Committed and will be in 1.7.3.
Allan