You are not logged in.
Pages: 1
Hello, I found a detail in the procedure "InvalidTextLengthMin" unit"SynCommons.pas" used in the function "TSynValidateText.Process"
original:
procedure InvalidTextLengthMin(min: integer; var result: string);
begin
result := Format(sInvalidTextLengthMin,[1,Character01n(1)]);
end;
correction:
procedure InvalidTextLengthMin(min: integer; var result: string);
begin
result := Format(sInvalidTextLengthMin,[min,Character01n(min)]);
end;
thank you
Offline
Should be fixed by http://synopse.info/fossil/info/68fde4412eeba
Thanks for the feedback!
Offline
Pages: 1