Anyone out there know how I can disable xhtml-style close tags.
For example, I want it to output <br> rather than </br>.
or <img src=""> rather than <img src="" />
This is so that I can use FCKEditor on an old system.
Thanks in advance for any help. (I've searched the code looking for " />" and replacing it with ">" but it is still outputting the way I don't want)
For example, I want it to output <br> rather than </br>.
or <img src=""> rather than <img src="" />
This is so that I can use FCKEditor on an old system.
Thanks in advance for any help. (I've searched the code looking for " />" and replacing it with ">" but it is still outputting the way I don't want)

Re: disable xhtml-style close tags?
Re: disable xhtml-style close tags?
Re: disable xhtml-style close tags?
Re: disable xhtml-style close tags?
senseless comments
Re: disable xhtml-style close tags?
Re: disable xhtml-style close tags?
It's that simple.
Re: disable xhtml-style close tags?
Thanks for being a belligerent idiot though.
Re: disable xhtml-style close tags?
Re: disable xhtml-style close tags?
It does not make a damn bit of difference if you just come on here and put people down for trying to get help.
Re: disable xhtml-style close tags?
http://dev.fckeditor.net/ticket/2163
Re: disable xhtml-style close tags?
Re: disable xhtml-style close tags?
remember that you must repackage them in the normal setup.
Re: disable xhtml-style close tags?
Re: disable xhtml-style close tags?
if you are unable to modify the source, then just process the output html before storing it to your db, I don't know how many times I've repeated this. it's just one line: code = replace(code, " />", ">")
Re: disable xhtml-style close tags?
oh well. nevermind.