
Problem solved! To replace the news manager text editor with FCKEditor (assuming you have the FCKEditor module installed) replace the following in admin/news_box_manage.php (I believe it's on line 296):
Code:
<?php echo zen_draw_textarea_field('news_content[' . $languages[$i]['id'] . ']', 'soft', '100%', '35', (isset($news_content[$languages[$i]['id']]) ? stripslashes($news_content[$languages[$i]['id']]) : zen_get_news_content($_GET['nID'], $languages[$i]['id'])),'id="ta' . $i . '"'); ?>
with this:
Code:
<?php if ($_SESSION['html_editor_preference_status']=="FCKEDITOR") {
$oFCKeditor = new FCKeditor('news_content[' . $languages[$i]['id'] . ']') ;
$oFCKeditor->Value = zen_get_news_content($_GET['nID'], $languages[$i]['id']);
$oFCKeditor->Width = '700' ;
$oFCKeditor->Height = '500' ;
// $oFCKeditor->Create() ;
$output = $oFCKeditor->CreateHtml() ; echo $output;
} else { // using HTMLAREA or just raw "source"
echo zen_draw_textarea_field('news_content[' . $languages[$i]['id'] . ']', 'soft', '100%', '35', (isset($news_content[$languages[$i]['id']]) ? stripslashes($news_content[$languages[$i]['id']]) : zen_get_news_content($_GET['nID'], $languages[$i]['id'])),'id="ta' . $i . '"');
} ?>
Basically, if you have FCKEditor working for EZ-Pages, you can snag the code from the EZ-Pages editor and use it. (Hopefully the next version of the News Manager will make this unnecessaray.)