Firefox 1.0 PR doesnt show WYSIWYG, because vBulletin understand version differently.
Please apply the fix publish here on vBulletin.org, so we (who use Firefox 0.10) can use WYSIWYG
http://www.vbulletin.com/forum/bugs....iew&bugid=3373
Look for:
PHP Code:
preg_match('#(phoenix|firebird|firefox)( browser)?/([0-9\.]+)#', $useragent, $regs);
Add bellow
PHP Code:
$regs[3] = (version_compare('0.10', $regs[3]) <= 0 ? '1.0' : $regs[3]);