it are 3 pages with forms.
First selecting people
second make e-mail (add subject and content)
third form is a page to confirm subject, content and people, so not really a form
when there are diaeresis in the page, the send function doesnt load (which must be fired when onCorrect is true).
$form->onCorrect("send");
$form->Flush();
ive searched in the isCorrect and the isValid funciton.
The isString and isText functions return 0 when there is a diaeresis in the $value
function IsString($value){
return preg_match("/^[^\x-\x1F]+$/", $value);
}
and
function IsText($value){
return preg_match("/^([^\x-\x1F]|[\r\n\t])+$/", $value);
}
these functions return 0.
when i add return 1; before the return, the value is correct, but then the value is empty.
when i click "This is correct -> send", i stay at this page when there is a diaeresis in the content.
but when i skip this summary form page, the form will be send.