Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Tinymce
Tinymce
0
Comments
So something has changed in Vanilla since 1.0.1 that turns accented characters like this--itarataÅ› cÄrthesÌ£v abhijñahÌ£ svarÄtÌ£--into question marks. Any idea what that might be? Is Unicode turned off in the header or something?
DBH
. The formatter use with this extension doesn't.
First, Schizo, you change the way the extension force the use of its formatter. Replace line 120:
$Context->StringManipulator->Formatters = array(); $Context->StringManipulator->GlobalFormatters = array(); $Context->Configuration['DEFAULT_FORMAT_TYPE'] = "Tinymce";
with
if ( $Context->Session->UserID > 0 && $Context->Session->User->Permission('PERMISSION_HTML_ALLOWED') ) { //Make Tinymce formatter the only formatter available to post a new comment or to edit an old one $Context->Configuration['DEFAULT_FORMAT_TYPE'] = 'Tinymce'; $Context->Session->User->DefaultFormatType = 'Tinymce'; $Context->Session->User->Preferences['ShowFormatSelector'] = 0; }
the old post will still use the previous formatter.
Then if you want to change the line by
, not that interesting with WYSIWYG, you can set tinyMCE to do it (I think i read it in the doc) or add a nl2br function in the new formatter.
stating that paragraphs should be used instead not br tags
I agree,
But still, you should change the way you force the use of your formatter. Until the are edited with tinyMCE, old post should be using the previous formatter, especially if the forum was using something else than a html formatter.
why the Tinymce editor bar cannot show in IE?
But it can worked in firefox.
On this site Tinymce WYSIWYG editor.
Can we get this updated please?