Forum Moderators: open
Essentially, FP 2003 changes your nicely structured includes from:
<!--webbot bot="include" u-include="file1.htm" tag="body" -->
<!--webbot bot="include" u-include="file2.htm" tag="body" -->
<!--webbot bot="include" u-include="file3.htm" tag="body" -->
... to this mess:
<!--webbot bot="include" u-include="file1.htm" tag="body" --><!--webbot bot="include" u-include="file2.htm" tag="body" --><!--webbot bot="include" u-include="file3.htm" tag="body" -->
There seems to be an easy fix: Delete the tag="body" part of the include statement, and FP leaves your code alone... eg:
<!--webbot bot="include" u-include="file1.htm" -->
<!--webbot bot="include" u-include="file2.htm" -->
<!--webbot bot="include" u-include="file3.htm" -->
Give it a try!
S.