Just an FYI ...
I found a bug in vB which breaks the WYSIWYG editors in Internet Explorer if the Mootools javascript library (mootools.js) is included on a vB page. So, for instance, you can't post anything or send PM's, or do anything which uses a WYSIWYG editor. It'll keep telling you your post must have more than 10 characters.
Although Joomla 1.0.x itself doesn't include Mootools, a lot of Joomla components and templates do (like almost all the Rocket Themes ones). Joomla 1.5 does include Mootools by default.
I submitted a bug report at vbulletin.com, and it's been marked as 'confirmed and fixed', although they didn't post the fixed code yet. The bug is in vbulletin_textedit.js.
I'll update this post when I find out what the fix is.
[EDIT]
The fix is around line 1423, the two lines commnented with 'hugh' below:
Code:
// Force Firefox 1.0 to run it here and Firefox 1.5+ later on, see Bug #22661
// hugh - patched as per http://www.vbulletin.com/forum/project.php?issueid=25602
// if (doinit && typeof Array.prototype.map == 'undefined') { this.editdoc.designMode = 'on'; }
this.editdoc = this.editwin.document; // See: http://msdn.microsoft.com/workshop/author/dhtml/overview/XpSp2Compat.asp#caching
this.editdoc.open('text/html', 'replace');
this.editdoc.write(text);
this.editdoc.close();
if (doinit)
{
this.editdoc.body.contentEditable = true;
// $$$ hugh
//if (typeof Array.prototype.map != 'undefined')
if (is_moz)
{
this.editdoc.designMode = 'on';
}
}
-- hugh