Subject: | Script before head does not produce valid XHTML |
By changing line 966 to put the script after the head tag, the
resultant XHTML validates (on my test page) using
http://validator.w3.org/:
Before: $newhtml = $shtml[0].$js.$shtml[1].$shtml[2];
After: $newhtml = $shtml[0].$shtml[1].$js.$shtml[2];