IE11 browser detection and fixes
IE11 gets along pretty well with vB4, though file downloads get a bit wonky due to some changes in how IE is detected.
Please note, that 4.2.2 and beyond ALREADY includes these changes. In includes/functions.php find: PHP Code:
// detect macintosh
Add above: PHP Code:
// Detect Modern IE11+
Next, find: PHP Code:
if (strpos($useragent, 'gecko') !== false AND !$is['safari'] AND !$is['konqueror'])
PHP Code:
if (strpos($useragent, 'gecko') !== false AND !$is['safari'] AND !$is['konqueror'] AND !$is['ie'])
Download No files for download. |
Similar Mods
Integration with vBulletin Mobile Device & Browser Detection (Adapted by BOP5) | vBulletin 4.x Add-ons |
Miscellaneous Hacks IE11 browser detection and fixes | vBulletin 3.8 Add-ons |