Quote Originally Posted by sfatula View Post
The code is missing the changes required for fckEditor. Look for this:

if ($_SESSION['html_editor_preference_status']=='FCKEDITOR') {
$oFCKeditor = new FCKeditor('categories_description[' . $languages[$i]['id'] . ']') ;
$oFCKeditor->Value = zen_get_category_description($cInfo->categories_id, $languages[$i]['id']);
$oFCKeditor->Width = '97%' ;
$oFCKeditor->Height = '200' ;
// $oFCKeditor->Config['ToolbarLocation'] = 'Out:xToolbar' ;
// $oFCKeditor->Create() ;
$output = $oFCKeditor->CreateHtml() ;
$category_inputs_string .= '<br />' . $output;

You will find the above code twice, once for new categories, and once for existing. Right below this code, add:

$oFCKeditor2 = new FCKeditor('categories_description_sub[' . $languages[$i]['id'] . ']') ;
$oFCKeditor2->Value = zen_get_category_description_sub($cInfo->categories_id, $languages[$i]['id']);
$oFCKeditor->Width = '97%' ;
$oFCKeditor->Height = '200' ;
// $oFCKeditor->Config['ToolbarLocation'] = 'Out:xToolbar' ;
// $oFCKeditor->Create() ;
$output = $oFCKeditor2->CreateHtml() ;
$category_sub_inputs_string .= '<br />' . $output;

So, remember to do this is BOTH places and it will work fine. I have a heavily modified categories.php, else, I would update the contribution. Perhaps the owner can do so for the benefit of all.
Thanks Steve,

Sorry guys that I haven't taken the time to work this out, Steve, thanks for making it easy for me! I'll update the contribution in the next couple of days.