Generated forms with javascript are not XHTML compliant because the <script> tag is missing an attribute.
To fix, simply replace line 20 of chronocontact.html.php
With:
Also, the error message in the same document (line 42)
is extremely unprofessional. Please replace "plz" with "please".
To fix, simply replace line 20 of chronocontact.html.php
echo "<script>";
With:
echo "<script type='text/javascript'>"
Also, the error message in the same document (line 42)
echo "There is no form with this name, plz check the url and the form management";
is extremely unprofessional. Please replace "plz" with "please".
I recommend that the script output section of chronocontact.html.php be replaced with:
Also, the actionurl output should be replaced as follows:
<?php if(!empty($rows[0]->scriptcode)){
echo "<script type='text/javascript'>\n";
echo "//<![CDATA[\n";
echo $rows[0]->scriptcode;
echo "//]]>\n";
echo "</script>\n";
}
?>
Also, the actionurl output should be replaced as follows:
$actionurl = 'index.php?option=com_chronocontact&task=send&chronoformname='.$rows[0]->name;
(notice using & instead of &«»)
Thanky ou very much for ur suggestions dynedain, these changes will be tested and applied in the next release.;)
Thanks,
Max
Thanks,
Max
This topic is locked and no more replies can be posted.