|
well if I have html off it will display as such
<iframe src="" name="frame1" scrolling="no" frameborder="no" align="left" height="400px" width="450px">
</iframe>
<br clear="all">
<iframe src="" name="frame2" scrolling="no" frameborder="no" align="left" height="400px" width="450px">
</iframe>
However on edit it definately is converted back to this. I tried your exact code posted above
<iframe src="" name="frame1" scrolling="no" frameborder="no" align="left" height="400px" width="450px">
</iframe>
<br clear="all">
<iframe src="" name="frame2" scrolling="no" frameborder="no" align="left" height="400px" width="450px">
</iframe>
Make sure your using The 3.1 download all the files. Only other suggestion I would make has nothing to do with edit is in showphoto you can try this as maybe you have a conflict with convert_markups
remove the code in bold
if ($Globals['allowhtml'] == "yes" ) $desc = convert_markups( un_htmlspecialchars($desc) );
so that line should look like
if ($Globals['allowhtml'] == "yes" ) $desc = un_htmlspecialchars($desc);
Last edited by Chuck S; October 4th, 2005 at 07:48 AM.
|