Hello
I been using FCKeditor for a while, just updated to 2.6.6.
But I have a new problem.
If there is a new empty row (< >) at the end of the topic, FCKeditor want start
<p>Main text</p>
<p> </p>
Any idéas ??
// Anders
I been using FCKeditor for a while, just updated to 2.6.6.
But I have a new problem.
If there is a new empty row (< >) at the end of the topic, FCKeditor want start
<p>Main text</p>
<p> </p>
Any idéas ??
// Anders
Re: Problem with &nbsp at the end of a topic
// Anders
Re: Problem with &nbsp at the end of a topic
Actually, I am using php for calling the texteditor.
Here's my code.
<?php
include_once($this_base_url."include/fckeditor/fckeditor.php") ;
$sBasePath = $base_url."include/fckeditor/";
$oFCKeditor = new FCKeditor('content') ;
$oFCKeditor->BasePath = $sBasePath ;
$oFCKeditor->Value = '';
$oFCKeditor->Create() ;
?>
Re: Problem with &nbsp at the end of a topic