The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#11
|
||||
|
||||
I've just had a quick look at the code and it looks like the bit that detects which browsers can use WYSIWYG is in includes/functions_editor.php starting line 165 (vb3.8.11 files)
Code:
if ($choice == 2) // attempting to use WYSIWYG, check that we really can { if (!is_browser('opera') OR is_browser('opera', '9.0')) { // Check Mozilla Browsers if (is_browser('firebird', '0.6.1') OR is_browser('camino', '0.9') OR (is_browser('mozilla', '20030312') AND !is_browser('firebird') AND !is_browser('camino'))) { return 2; } else if (is_browser('ie', '5.5') AND !is_browser('mac')) { return 2; } else if (false AND is_browser('opera', '9.0')) { return 2; } else { return 1; } } else { // browser is incompatible - return standard toolbar return 1; } } else { // return standard or no toolbar return $choice; } |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|