I upgraded to tinymce 3.5.10
There were problems most of which I fixed but two.
It won't appear on custom pages in the admin area.
The checkbox is there but nothing happens.
I wanted to allow colors.
It works during tinymce edits.
The colors go away in the posts.
tinyMCE.init({
theme: 'advanced',
height: '250',
language: '$language',
convert_urls: 'false',
mode: 'none',
extended_valid_elements: 'a[name|href|target|title]',
plugins: 'autolink,lists,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template',
theme_advanced_buttons1_add: 'fontsizeselect,fontselect',
theme_advanced_buttons2_add: 'separator,pasteword,pastetext,cut,paste,forecolor,backcolor,spellchecker,pagebreak',
theme_advanced_buttons3_add_before: 'tablecontrols,separator,insertdate,blockquote,emotions',
theme_advanced_buttons3_add: 'advhr',
theme_advanced_toolbar_align: 'center',
theme_advanced_toolbar_location: 'bottom',
theme_advanced_statusbar_location: 'bottom',
theme_advanced_path: 'false',
";
if(USERUID)
echo " external_image_list_url : '".STORIESPATH."/".USERUID."/images/imagelist.js',";
echo "
theme_advanced_resizing: true,".($current == "adminarea" ? "nttentity_encoding: 'raw'" : "nttinvalid_elements: 'script,object,applet,iframe'")."
});
I'm not sure if I need to fix that or if it is in the custompages files.
