Subject: | Bug in password and single-select loading |
Upon submitting, when the form is displayed again because there were validation errors, the <f:single-list> did not reload the items and thus was empty.
Also, the password_validate call had a typo (comma instead of dot)
I supplied a diff patch for the file. I Would appreciate it flowing back into the distribution, so when there are updates, I don't have to fix the bug locally again.
Regards
Bernhard
501c501
< "${package}::validate_${name}"->($ctxt, $params->{$name,$index}, $index);
---
> "${package}::validate_${name}"->($ctxt, $params->{$name.$index}, $index);
568c568
< elsif (defined &{"${package}::load_${name}"}) {
---
> if (defined &{"${package}::load_${name}"}) {