XHTML validation fix for fsSubmitCheck
Status: Beta
Brought to you by:
mrkatana
This is just a small XHTML fix, since direct use of the
<input /> tag is not permitted within a <form></form> tag.
File: block.fs_form.php
Around line: 43
Search:
echo '<input type="hidden" name="fsSubmitCheck"
value="true" />' . "\n";
Replace with:
echo '<div style="visibility:hidden"><input
type="hidden" name="fsSubmitCheck" value="true"
/></div>' . "\n";
Cheers,
Chris